/* Custom Logo Styling */
.custom-logo {
  display: flex; /* Keeps logo + text in one line */
  align-items: center; /* Vertically centers them */
  text-decoration: none; /* Removes underline from link */
  font-size: 28px; /* Adjust text size */
  font-weight: 800; /* Make text bold */
  color: red; /* Text color */
}

.custom-class-logo{
  color: yellow;
}

.custom-logo:hover{
    color: red; /
}

.custom-logo img {
  height: 80px; /* Adjust logo size */
  margin-right: 10px; /* Space between logo and text */
}

.custom-logo span {
  white-space: nowrap; /* Prevents text breaking */
}

/* Hide company name on mobile */
@media (max-width: 768px) {
  .custom-logo span {
    display: none;
  }
}
.footer-custom-logo{
  width: 160px; /* Adjust width as needed */
}

/* Main Container */
.custom-pro-detail-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
}

/* Header */
.custom-pro-detail-header {
  text-align: center;
  margin-bottom: 40px;
}

.custom-pro-detail-header h1 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.custom-pro-detail-header .location {
  font-size: 18px;
  color: #777;
}

/* Image Gallery */
.custom-pro-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Main Image Styling */
.custom-pro-detail-gallery .main-image {
  width: 100%;
  height: 500px; /* fixed height for consistency */
  border-radius: 12px;
  overflow: hidden;
}

.custom-pro-detail-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Thumbnail / Filmstrip Styling */
.custom-pro-detail-gallery .filmstrip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* auto wrap thumbnails */
  gap: 10px;
  max-height: none; /* remove fixed height */
  overflow: visible; /* remove scrollbar */
  padding: 0;
}

.custom-pro-detail-gallery .filmstrip img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-pro-detail-gallery .filmstrip img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-pro-detail-gallery .filmstrip {
      grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
      gap: 8px;
  }
}


/* Key Info */
.custom-pro-detail-info {
  background: #fafafa;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.custom-pro-detail-info h2 {
  color: #b76e79;
  font-size: 28px;
  margin-bottom: 15px;
}

.custom-pro-detail-info p {
  font-size: 18px;
  margin: 8px 0;
}

/* Sections (BHK, Amenities, Description) */
.custom-pro-detail-bhk,
.custom-pro-detail-amenities,
.custom-pro-detail-description {
  margin-bottom: 40px;
}

.custom-pro-detail-bhk h3,
.custom-pro-detail-amenities h3,
.custom-pro-detail-description h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
  border-left: 4px solid #b76e79;
  padding-left: 12px;
}

.custom-pro-detail-bhk ul,
.custom-pro-detail-amenities ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
}

.custom-pro-detail-bhk li,
.custom-pro-detail-amenities li {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px 15px;
  text-align: center;
  font-size: 16px;
  transition: all 0.2s ease;
  border: 1px solid #eee;
}

.custom-pro-detail-bhk li:hover,
.custom-pro-detail-amenities li:hover {
  background: #fff;
  border-color: #b76e79;
  color: #b76e79;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.custom-pro-detail-description p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-pro-detail-header h1 {
      font-size: 26px;
  }
  .custom-pro-detail-info h2 {
      font-size: 22px;
  }
  .custom-pro-detail-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;

  }
}



body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--secondary-color);
  line-height: 1.6;
}

.rent-loan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Banner */
.rent-loan-banner {
  background:  url('/assets/img/myimage/banner/Banner-1.jpg') no-repeat center center;
  background-size: cover;
  color: var(--accent-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
  height: 500px;
}

.rent-loan-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.rent-loan-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rent-loan-banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.rent-loan-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.rent-loan-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

/* Section Styles */
.rent-loan-section {
  padding: 80px 0;
}

.rent-loan-section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
}

.rent-loan-section-title:after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto;
}

/* Rental Agreement Section */
.rent-loan-agreement {
  background-color: var(--light-gray);
}

.rent-loan-agreement-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.rent-loan-agreement-image {
  flex: 1;
  min-width: 300px;
}

.rent-loan-agreement-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.rent-loan-agreement-text {
  flex: 1;
  min-width: 300px;
}

.rent-loan-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.rent-loan-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

/* Loan Section */
.rent-loan-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.rent-loan-card {
  background-color: var(--accent-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.rent-loan-card:hover {
  transform: translateY(-10px);
}

.rent-loan-card-header {
  background-color: var(--primary-color);
  color: var(--accent-color);
  padding: 20px;
  text-align: center;
}

.rent-loan-card-body {
  padding: 30px;
}

.rent-loan-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.rent-loan-card-highlight {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.rent-loan-card-list {
  list-style-type: none;
  padding: 0;
}

.rent-loan-card-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.rent-loan-card-list li:last-child {
  border-bottom: none;
}

/* CTA Section */
.rent-loan-cta {
  background: url('/assets/img/myimage/banner/loan banner.jpg') no-repeat center center;
  background-size: cover;
  color: var(--accent-color);
  text-align: center;
  padding: 80px 20px;
  height: 400px;
}

.rent-loan-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .rent-loan-banner h1 {
      font-size: 2.5rem;
  }

  .rent-loan-section-title {
      font-size: 2rem;
  }

  .rent-loan-card-highlight {
      font-size: 2rem;
  }
}


/* Hero Section */
.workers-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/img/myimage/banner/Banner-1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}
.workers-hero-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.workers-hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
.workers-services {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}
.workers-container {
  max-width: 1100px;
  margin: 0 auto;
}
.workers-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}
.workers-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}
.workers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.workers-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.workers-item:hover {
  transform: translateY(-5px);
}
.workers-item h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #444;
}
.workers-item p {
  color: #666;
  font-size: 0.95rem;
}

/* Why Choose Us */
.workers-whyus {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.workers-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.workers-feature {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}
.workers-feature h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333;
}
.workers-feature p {
  color: #555;
  font-size: 0.9rem;
}

/* CTA Section */
.workers-cta {
  background: linear-gradient(to right, #ffffff, #9c9c9c);
  
  padding: 100px 20px;
  text-align: center;
}
.workers-cta-content {
  max-width: 800px;
  margin: 0 auto;
}
.workers-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.workers-cta p {
  font-size: 1rem;
  margin-bottom: 30px;
}
.workers-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #e67e22;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}
.workers-btn:hover {
  background: #d35400;
}
.abtsec-container {
  background-color: #f9f7f3;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}

.abtsec-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.abtsec-image img {
  width: 450px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.abtsec-content {
  flex: 1;
  min-width: 300px;
}

.abtsec-title {
  font-size: 2.5rem;
  color: #2c2c2c;
  margin-bottom: 20px;
  position: relative;
}

.abtsec-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff6b6b;
  margin: 12px 0 0;
  border-radius: 2px;
}

.abtsec-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .abtsec-wrapper {
      flex-direction: column;
      text-align: center;
      gap: 20px;
  }

  .abtsec-image img {
      width: 80%;
  }

  .abtsec-title {
      font-size: 2rem;
  }

  .abtsec-description {
      font-size: 1rem;
  }
}

.sumedh-image-gal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Main Image Styling */
.sumedh-main-image {
  flex: 2; /* occupy more space */
  max-width: 700px;
  height: 500px; /* fixed height */
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5; /* optional: placeholder bg */
}

.sumedh-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* show full image */
  transition: transform 0.3s ease;
}

/* Vertical Thumbnails as Grid (5 per column) */
.sumedh-thumb-container {
  display: grid;
  grid-template-rows: repeat(5, 80px); /* 5 thumbnails per column */
  grid-auto-flow: column; /* overflow images to next column */
  gap: 10px;
}

.sumedh-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* thumbnails can crop slightly */
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sumedh-thumb img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sumedh-image-gal {
      flex-direction: column;
      align-items: center;
  }

  .sumedh-thumb-container {
      grid-template-rows: none;
      grid-auto-flow: row;
      grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
      width: 100%;
      gap: 10px;
  }

  .sumedh-thumb img {
      height: 60px;
  }

  .sumedh-main-image {
      height: 400px;
  }
}
.testi-logo{
  width: 80px; /* Adjust logo size */
  height: 80px; /* Adjust logo size */
 
}