.custom-img {
  width: 100%;  /* पूरी चौड़ाई बनाए रखे */
  height: 500px; /* डिफॉल्ट रूप से 500px */
  object-fit: contain; /* इमेज को कटने से बचाने के लिए */
}

/* छोटे डिवाइसेस (मोबाइल) के लिए */
@media (max-width: 768px) {
  .custom-img {
      height: 200px; /* छोटे स्क्रीन पर 200px */
  }
}

.paragraph{
    padding: 10px;
    font-size: 13px;
}

.stats1-section {
    background-color: #f9fafb;
    padding: 20px 0px 40px 0px;
    margin: 20px;
}

.stats1-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
    height: 100px;
    padding: 10px;
    border-radius: 10px;
}

/* ✅ Mini Image Styling */
.stats1-img {
    width: 40px; /* छोटा साइज */
    height: 40px;
    object-fit: contain; /* Image पूरी दिखे */
}

/* ✅ Number और Text स्टाइलिंग */
.stats1-number {
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.stats1-text {
    font-size: 15px;
    color: #333;
}

/* ✅ Cards में Gap जोड़ना */
@media (min-width: 768px) {
    .row > .col-6 {
        padding: 10px; /* Desktop में extra gap */
    }
}

/* ------------------------------- */
.stats2-section {
    background-color: #f9fafb;
    padding: 20px 0px 40px 0px;
    margin: 20px;
}

.stats2-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fbff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
    height: 140px;
    /* width: 200px; */
    padding: 10px;
    border-radius: 10px;
}

/* ✅ Mini Image Styling */
.stats2-img {
    width: 40px; /* छोटा साइज */
    height: 40px;
    object-fit: contain; /* Image पूरी दिखे */
}

/* ✅ Number और Text स्टाइलिंग */
.stats2-number {
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.stats2-text {
    font-size: 15px;
    color: #333;
}

/* ✅ Cards में Gap जोड़ना */
@media (min-width: 768px) {
    .row > .col-6 {
        padding: 10px; /* Desktop में extra gap */
    }
}
/* --------------------------------form-------------------------- */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: auto;
    margin-top: 50px;
}
.form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}
.btn-submit {
    background-color: #DDB793;
    color: black;
    border: none;
    /* width: 100%; */
    padding: 10px;
    border-radius: 5px;
}
.btn-submit:hover {
    background-color:black;
    color: white;
}

/* ------------------------------------------ */
.form-containermain {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: auto;
    margin-top: 50px;
}
.form-containermain h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}
.btn-submit {
    background-color: #DDB793;
    color: black;
    border: none;
    /* width: 100%; */
    padding: 10px;
    border-radius: 5px;
}
.btn-submit:hover {
    background-color:black;
    color: white;
}
/* -------------------------------- */
.partners-section {
    text-align: center;
    padding: 40px 0;
}
.partners-section h3 {
    font-weight: bold;
    margin-bottom: 20px;
}
.carousel-inner {
    display: flex;
    align-items: center;
}
.carousel-item {
    text-align: center;
}
.carousel-item img {
    width: 150px;
    height: auto;
    margin: 0 15px;
    border-radius: 10px;
    background: white;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* ----------------------------delhi-------------------------------- */
.para1{
    font-size: 14px;
     padding: 15px;
    text-align: center;
}

.card {
  
    border: 1px solid rgb(165, 183, 200);
    /* border-radius: 20px; */
    box-shadow: 0 4px 8px rgba(173, 9, 9, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 400px;
  }

  .card:hover {
    transform: translateY(-30px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: none;
  }

  /* .card img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  } */

  .card-title {
    font-size: 1.25rem;
    font-weight: bold;
  }

  .card-text {
    font-size: 0.95rem;
    color: #555;
  }

  .card-body {
    padding: 20px;
    background-color: #f9f9f9;
  }

  /* Responsive card size adjustments */
  @media (max-width: 768px) {
    .card {
      margin-bottom: 20px;
    }
  }

   /* Before/After Image Slider */
   .count{
    padding: 10px;
    border: 1px solid blacks;
   }
   .ba-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
  }

  .ba-slider img {
    width: 100%;
    display: block;
  }

  @media(max-width:992px){
    .ba-slider img {
      display: none;
    }
  }
  .ba-slider .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
  }

  .ba-slider .handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ba-slider .handle::after {
    content: '⇆';
    font-size: 20px;
    font-weight: bold;
    color: #333;
  }

  /* Counter Section */
  .counter-section {
    text-align: center;
    margin-top: 20px;
  }

  .counter {
    font-size: 40px;
    font-weight: bold;
    color: black;
  }

  .counter-label {
    font-size: 16px;
    color: #555;
  }

  .counter-divider {
    height: 50px;
    width: 2px;
    background: #ccc;
    display: inline-block;
    margin: 0 20px;
  }

  .content1 {
 
    font-size: 13px;
}
  .content {
    display: none;
    font-size: 13px;
}
.container2 {
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
  
}

.btn-custom{
    color: black;
    cursor: pointer;
}
/* -------- */
.contact-containermain{
    background-color: #F8FBFF;
}
.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.contact-box {
    width: 80%;
    background: white;
    padding: 30px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-img {
    max-width: 90%;
    height: auto;
    animation: upDownAnimation 2s ease-in-out infinite;
}

@keyframes upDownAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

.contact-form input, .contact-form textarea {
    border-radius: 5px;
}

.submit-btn {
    background-color: #DDB793;
    color: black;
    padding: 10px;
    border-radius: 20px;
    width: 100%;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: black;
    color: white;
}

.heading {
    color: black;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-decoration: underline;
}


/* -------------------------- */
.contact-containermain1{
    background-color: #F8FBFF;
}
.contact-container1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40vh;
}
.contact-box1 {
    width: 80%;
    background: white;
    padding: 30px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-img {
    max-width: 90%;
    height: auto;
    animation: upDownAnimation 2s ease-in-out infinite;
}

@keyframes upDownAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}







/* ------------------------------- */
/* Cards Styling */
.info-card {
    background: #f8f9fa;
    padding: 30px;
    height: 100px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;

    margin: 10px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.btn1{
    background-color: #DDB793;;
    padding: 7px;
    /* gap: 8px; */
    color: black;
    border: none;
    margin-left: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .info-card {
        font-size: 16px;
        padding: 30px;
    }
}



/* ---------------------------------------get a consultant------ */

.designation1{
    font-size: 14px;
}
.client-review{
    background-color: #DDB793;
}
/* -----------------------------pop up--------------------- */
#popupForm {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
  }
  
  h2 {
    text-align: center;
    font-size: 25px;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-bottom: 8px;
  }
  
  input, select {
    margin-bottom: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px;
  }
  
  button {
    padding: 10px;
    background-color:#DDB793;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  
  
  @media (max-width: 600px) {
    .form-container {
      width: 80%;
      padding: 15px;
    }
  }












  /* -------------------------------blog------------------------------ */
  #blog {
    background-color: #f9f9f9;
    padding: 60px 0;
  }

  #blog h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
  }

  .blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px;
    transition: transform 0.3s ease;
  }

  .blog-card:hover {
    transform: scale(1.05);
  }

  .blog-card-title {
    font-size: 1.2rem;
    padding: 5px;
    color: #333;
    /* font-weight: bold; */
  }

  .blog-card-text {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
  }

  .btn-primary {
    background-color:#DDB793;
    border: none;
    color: black;
  }

  .btn-primary:hover {
    background-color: black;
  }

  /* ----------------------contact us ------------------- */
  .contact-section {
    padding: 50px 0;
}
.contact-info i {
    font-size: 20px;
    margin-right: 10px;
    color: black;
}
.contact-info p {
    margin-bottom: 10px;
}
.map-container {
    width: 100%;
    height: 300px;
}
.form-control:focus {
    border-color:black;
    box-shadow: none;
}

/* -----------------privarcy-policy-------- */
.privacy-section {
    padding: 50px 20px;
}
.privacy-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* ------------------term and condition ----- */
.terms-container {
    max-width: 90%;
    margin: 70px auto;
}
.terms-card {
    margin-top: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.terms-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
/* -----------------------about------------ */
.about-section {
  background: linear-gradient(to right, #DDB793, #262d38);
  color: white;
  padding: 60px 0;
}
/* .about-section h5 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
} */
.about-section p {
  font-size: 18px;
  margin-top: 10px;
}
.about-img {
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
  height: 50vh;
}
.about-img:hover {
  transform: scale(1.05);
}
  /* पूरा सेक्शन */
  .my-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    margin-top: 100px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* बैकग्राउंड इमेज */
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    object-fit: cover; /* इमेज को पूरा कवर करेगा */
    z-index: -1; /* टेक्स्ट के पीछे भेजना */
}

/* टेक्स्ट बॉक्स */
.info-card1 {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: left;
    position: relative;
    z-index: 2; /* टेक्स्ट को आगे लाना */
    height: auto;
    margin-left: 200px;
}

/* छोटे स्क्रीन के लिए */
@media (max-width: 768px) {
    .my-section {
        height: auto;
        padding: 50px 20px;
    }

    .info-card {
        width: 100%;
    }
}



.tab-section {
  background-color: white;
  box-shadow: 5px 5px 5px #c0b1a4;
  padding: 20px;
}

.tab-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-item {
  padding: 10px 20px;
  background: #DDB793;
  color: black;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-item:hover, .tab-item.active {
  background: black;
  color: white;
}

.tab-content {
  display: none;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 5px;
  margin-top: 10px;
}

.tab-content.active {
  display: block;
}

@media (max-width: 768px) {
  .tab-menu {
    flex-direction: column;
    align-items: center;
  }
  .tab-item {
    width: 100%;
    text-align: center;
  }
}

.service-list {
  list-style: none;
  padding: 0;
}
.service-list li {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.service-list i {
  color:#DDB793;
  margin-right: 8px;
  font-size: 18px;
}