/* 🌟 Overall Section Layout */
.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

/* 🧭 Address Card (Left Side) */


.address:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Address Title */
.address h5 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  border-left: 4px solid #007bff;
  padding-left: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Address Text */
.address p {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 10px;
}

.address strong {
  color: #0f172a;
  font-weight: 600;
}

.address a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.address a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* 📍 Contact Card (Right Side) */

.contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Google Map Styling */
.contact iframe {
  border-radius: 12px;
  width: 100%;
  height: 250px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.contact iframe:hover {
  transform: scale(1.02);
}

/* Ninja Form Container */
.contact .nf-form-cont {
  background: #f9fafb;
  border-radius: 12px;
  padding: 25px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.04);
}

.contact .nf-form-title h3 {
  font-size: 22px;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 4px;
}

/* Form Labels and Inputs */
.contact .nf-field-label label {
  font-weight: 600;
  color: #475569;
  font-size: 14px;
}

.contact .ninja-forms-field {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  font-size: 15px;
  color: #1e293b;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.contact .ninja-forms-field:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  outline: none;
}

/* Submit Button */
/* Submit Button */
.contact input[type="submit"].ninja-forms-field {
  background: #CBAE76;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact input[type="submit"].ninja-forms-field:hover {
  background: #b29566; /* Slightly darker gold for hover */
  transform: translateY(-2px);
}

.contact,
.contact .nf-form-cont {
  height: auto !important;
  overflow: visible !important;
  max-height: none !important;
}


/* 📱 Responsive Design */
@media (max-width: 900px) {
  .section {
    flex-direction: column;
    align-items: center;
  }

  .address,
  .contact {
    max-width: 100%;
    width: 100%;
  }

  .address {
    margin-bottom: 25px;
  }
}
/* Make footer copyright text white */
footer,
.site-footer,
.landiox-footer-area p {
  color: #ffffff !important;
}

/* === Equal Image Sizes in Project Sections === */

/* 1️⃣ For normal project images (not carousel) */
.elementor-widget-image img {
  width: 100%;
  height: 400px; /* adjust height as needed */
  object-fit: cover; /* maintains proportions and crops neatly */
  border-radius: 10px; /* optional – for soft corners */
}

/* 2️⃣ For Image Carousel images */
.elementor-widget-image-carousel .swiper-slide-image {
  width: 100%;
  height: 400px; /* make this same as above for consistency */
  object-fit: cover;
  border-radius: 10px;
}

/* 3️⃣ Ensure all images inside swiper containers align uniformly */
.elementor-widget-image-carousel .swiper-slide-inner,
.elementor-widget-image-carousel figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* 4️⃣ Optional: Smooth transition when slides change */
.elementor-widget-image-carousel .swiper-slide-image {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Optional hover zoom effect */
.elementor-widget-image-carousel .swiper-slide-image:hover,
.elementor-widget-image img:hover {
  transform: scale(1.02);
}


