:root {
  --primary-green: #2d5a47;
  --light-green: #4a7c59;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

header {
  color: #fff;
  /* padding: 10px 0; */
  text-align: center;
  position:sticky
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info {
  margin-bottom: 20px;
}

.contact-form {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
}

.index-carousel {
  z-index: -1;
  position: relative;
}
.index-carousel .carousel .carousel-inner {
  height: 800px; /* Set your desired fixed height */
}

.index-carousel .carousel .carousel-image {
  width: 100%;
  height: 800px; /* Same as carousel-inner height */
  object-fit: cover; /* This crops/scales image to fit while maintaining aspect ratio */
  object-position: center; /* Centers the image */
}

/* Alternative: if you want to fit entire image without cropping */
.index-carousel .carousel .carousel-image-contain {
  width: 100%;
  height: 800px;
  object-fit: cover; /* Fits entire image, may have letterboxing */
  object-position: center;
  background-color: #f8f9fa; /* Background color for letterbox areas */
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.contact-form button:hover {
  background: #555;
}

.map {
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 10px 0;
  background: #333;
  color: #fff;
  position: relative;
  bottom: 0;
  width: 100%;
}

.padding-section {
  padding: 10px;
}

.header-section {
  padding: 100px;
  background-color: red;
}

.full-section {
  padding: 100px;
}

.contact-box {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  border: 1px solid #e0e0e0;
  height: 250px; /* Fixed height */
  gap: 15px;
  transition: 2s;
}

.contact-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-title {
  font-weight: bold;
  color: #0d5c30;
}
.contact-box i {
  font-size: 40px;
  color: #0d5c30;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.contact-icon{
  height: 50%;
}

.text-left-important {
  text-align: left !important;
}

.contact-section {
  background: #F5F5F5;
  background-size: cover;
}
.form-control, .btn {
  border-radius: 0;
}

.hero-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  padding: 80px 0;
  min-height: 600px;
}

.property-images {
  position: relative;
}

.main-image {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: translateY(-5px);
}

.secondary-image {
  position: absolute;
  top: -20px;
  right: -20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 5px solid white;
  transition: transform 0.3s ease;
}

.secondary-image:hover {
  transform: translateY(-3px) scale(1.02);
}

.about-content {
  padding: 60px 0;
}

.section-title {
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 500;
}

.main-title {
  color: var(--primary-green);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.description {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.btn-custom {
  background-color: var(--primary-green);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: var(--light-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 90, 71, 0.3);
}

.stats-section {
  background: var(--primary-green);
  color: white;
  padding: 60px 0;
  margin-top: 80px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.features-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.index-project-section {
  position: relative;
  /* Add padding and other styles for your content */
  display: flex;
  justify-content: center;
  align-items: center;
  color: dark; /* Ensure text is visible over the background */
  height: 700px;
}

.index-project-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://paragonhillbatam.id/wp-content/uploads/2020/06/Citrine-Tipe-120.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.notify-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc3545;
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
  }
  50% {
      box-shadow: 0 4px 20px rgba(220, 53, 69, 0.8);
      transform: scale(1.05);
  }
  100% {
      box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
  }
}

/* Alternative badge styles you can use */
.notify-badge.style-2 {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border: 3px solid white;
}

.notify-badge.style-3 {
  background: #28a745;
  transform: rotate(-10deg);
}

.notify-badge.style-4 {
  background: #007bff;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  padding: 10px 20px 10px 15px;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

@media (max-width: 768px) {
  .main-title {
      font-size: 2.5rem;
  }
  
  .secondary-image {
      position: relative;
      top: 20px;
      right: 0;
      margin-top: 20px;
  }
  
  .hero-section {
      padding: 40px 0;
  }

  .notify-badge {
    top: -5px;
    right: -5px;
    padding: 6px 12px;
    font-size: 12px;
}
}




#subModal .modal-dialog {
  max-width: fit-content;
  width: auto;
}

#subModal .modal-content {
  width: auto;
  max-width: 100%;
}

#subModal img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.image-container {
  height: 250px; /* You can adjust this height */
  overflow: hidden;
  border-radius: 10px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-50{
  width: 50% !important;
}