
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #ffd74f;
  --secondary-color:              #f65129;
  --section-bg-color:             #f9f9f9;
  --site-footer-bg-color:         #36363e;
  --custom-btn-bg-color:          #00a05d;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;

  --twitter-color:                #1da1f2;
  --facebook-color:               #1877f2;
  --instagram-color:              #c13584;
  --pinterest-color:              #e60023;
  --whatsapp-color:               #128c7e;

  --body-font-family:             'League Spartan', sans-serif;

  --h1-font-size:                 62px;
  --h2-font-size:                 48px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             100;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family); 
    padding-top: 70px;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
    color: #2d50a2;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}FstuS

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color:#2d50a2;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.tooplate-red {
	color: var(--secondary-color);
}
.tooplate-green {
	color: var(--custom-btn-bg-color);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background: var(--section-bg-color);
}

.section-small-title {
  color: var(--custom-btn-bg-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  display: block;
}

.section-overlay {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.custom-block {
  background: #f0f8ff;
  border-top: 20px solid #2d50a2;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 50px;
}

.featured-custom-block {
  background: var(--border-color);
}

.shop-detail-custom-block {
  background: transparent;
  border-top: 0;
  border-radius: 0;
  padding: 30px;
}

.pagination {
  margin-top: 30px;
  margin-bottom: 0;
}

.page-link {
  border-color: var(--border-color);
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  font-size: var(--copyright-font-size);
  padding: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.page-item.active .page-link,
.page-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border: 0;
  border-radius: var(--border-radius-large);
}

.page-item:not(:first-child) .page-link {
  margin-left: 5px;
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 2px;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover {
  color: var(--primary-color);
}

.custom-link:hover::after {
  background: var(--custom-btn-bg-color);
}


/*---------------------------------------
  CUSTOM BADGE               
-----------------------------------------*/
.custom-badge {
  background: var(--white-color);
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: var(--secondary-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-semibold);
  padding: 10px 10px 6px 10px;
}

.custom-badge::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 7px solid var(--white-color);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  padding: 15px 20px;
}

.custom-btn:hover {
  background: transparent;
  border-color: var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  border-color: var(--white-color);
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
/* Basic Navbar styles */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.3s;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--primary-color);
    
}

.navbar-brand img-fluid {
    max-width: 100%;
    height: auto;
}
.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 10px;
  font-size: 16.9px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: #2d50a2;
}

.dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
}

.dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-size: medium;
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
    color: #2d50a2;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Mobile Navbar Scroll Styles */
.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* Vertical Scroll on Mobile */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: 80vh; /* Limit the height of the collapsed menu */
    overflow-y: auto; /* Allow vertical scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS devices */
    padding-right: 10px; /* Add padding for aesthetics */
  }

  .navbar-nav {
    display: block; /* Stack items vertically */
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px; /* Space between items */
  }

  /* Scrollbar styling */
  .navbar-collapse::-webkit-scrollbar {
    width: 6px; /* Width of the scrollbar */
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: #2d50a2;
    border-radius: 4px; /* Round the scrollbar thumb */
  }

  .navbar-collapse::-webkit-scrollbar-track {
    background: #f1f1f1; /* Scrollbar track color */
  }

  /* Optional: Add some padding to the nav items in mobile view */
  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: url('../images/empty-living-room-with-blue-sofa-plants-table-empty-white-wall-background-3d-rendering.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 150px;
}


/*---------------------------------------
  PAGINATION            
-----------------------------------------*/
.page{
    margin-top: 150px;
}

.tm-input-paging {
    width: 40px;
    border-radius: 0;
    border: 1px solid #CCCCCC;
    background: #284d46;
    text-align: center;
}

.page .tm-paging-link{
    color: #999;
}

.page .tm-paging{
    justify-content: center
}


.tm-paging-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 45px;
    font-size: 1.1rem;
    color: #999;
    background-color: #f0f8ff;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}


.tm-paging-link:hover,
.tm-paging-link.active {
    background-color: #0d6efd;
    color: #fff; 
}

.gap{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 45px;
    font-size: 1.1rem;
    color: #999;
    background-color: #EEEEEE;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
        margin-bottom: 50px;
}

.contact-form label {
  font-weight: var(--font-weight-semibold);
}

.google-map {
  display: block;
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .input-group {
  background-color: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: .25rem;
  margin-bottom: 24px;
  padding-left: 20px;
}

.custom-form .textarea-group label {
  margin-top: 13px;
}

.custom-form label {
  margin-right: 10px;
  margin-bottom: 0;
}

.custom-form .form-control {
  background-color: var(--white-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  padding-top: 12px;
  padding-bottom: 12px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form button[type="submit"] {
  background: #2d50a2;
  border: none;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}


/*---------------------------------------
  FILTER FORM              
-----------------------------------------*/
.filter-form {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.filter-form-small-title {
  display: block;
  margin-bottom: 10px;
}

.filter-form .form-select {
  border: 2px solid var(--border-color);
}

.filter-form .form-check-label {
  color: var(--p-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: #f0f8ff;
  padding-top: 40px;
    margin-top: 30px;
}

.site-footer-title {
color: #2d50a2;
    font-size: 20px;
}

.site-footer-bottom {
  background-color: #2d50a2;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-footer-bottom a {
	color: #2d50a2;
}

.site-footer-bottom a:hover {
	color: #FF6;
}

.site-footer-link {
  color: #717275;
    text-align: left;
    font-size: 18px;
}

.copyright-text {
  color: #fff;
  font-size: 17px;
    margin-top: 8px;
        text-align: center;

}

.site-footer .custom-btn {
  font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: 18px;
  color: #717275;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
    
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
    margin-top: 5px;
}

.mt-3 {
    margin-top: 1rem !important;
    font-size: 18px;
}
/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: var(--p-color);
  font-size: var(--p-font-size);
  display: block;
  margin-right: 15px;
  text-align: center;
}

.social-icon-link:hover {
  color: var(--secondary-color);
}

.bi-twitter::before {
    content: "\f5ef";
  color: var(--twitter-color);
}

.bi-facebook::before {
    content: "\f344";
  color: var(--facebook-color);
}

.bi-instagram::before {
    content: "\f437";
  color: var(--instagram-color);
}

.social-icon-pinterest {
  color: var(--pinterest-color);
}

.bi-whatsapp::before {
    content: "\f618";
    color: var(--whatsapp-color);
}

.bi-youtube::before {
    content: "\f62b";
    color: red;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-form {
    padding-bottom: 40px;
  }

  .page-link {
    font-size: 12px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 5px;
    margin-left: 5px;
  }

  .navbar {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    text-align: left;
    padding: 15px 16px;
    min-width: 125px;
  }

  .about-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .about-image {
    width: 260px;
    height: 260px;
  }

  .about-image-small {
    width: 180px;
    height: 180px;
  }

  .custom-block,

  .reviews-thumb {
    margin-bottom: 24px;
  }

  .reviews-body {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 580px) {
  .site-footer {
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
      margin-top: -1rem;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .page-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .about-image {
    width: 205px;
    height: 205px;
  }

  .about-image-small {
    width: 145px;
    height: 145px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }
}

.select-menu{
    width: 300px;
    margin: 140px auto;
    margin-top: -2rem;
}
.select-menu .select-btn{
    display: flex;
    height: 55px;
    background: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    border-radius: 8px;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.select-btn i{
    font-size: 25px;
    transition: 0.3s;
}
.select-menu.active .select-btn i{
    transform: rotate(-180deg);
}
.select-menu .options{
    position: absolute;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    display: none;
}
.select-menu.active .options{
    display: block;
    width: inherit;
}
.options .option{
    display: flex;
    height: 55px;
    cursor: pointer;
    padding: 0 16px;
    border-radius: 8px;
    align-items: center;
    background: #fff;
    width: auto;
}
.options .option:hover{
    background: #F2F2F2;
}
.option i{
    font-size: 25px;
    margin-right: 12px;
}
.option .option-text{
    font-size: 18px;
    color: #333;
}

/*--------------------------------------------------------------
# Form Section
--------------------------------------------------------------*/


.form .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-card h2, .info-card h2 {
    margin-bottom: 25px;
    font-size: 24px;
    font-family: 'Montserrat';
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    margin-top: 7px;
}

.contact-card form input,
.contact-card form textarea {
    width: 100%;
    padding: 7px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.contact-card form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.contact-card form button:hover {
    background-color: #0056b3;
}

.info-card p {
    margin-top: 25px;
    font-size: 17px;
    
}

.info-card h3 {
    font-size: 18px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .form .container {
        display: flex;
        flex-direction: column; 
        align-items: center; 
        gap: 20px; 
    }

    .form .card {
        width: 100%;
        margin-bottom: 20px; 
        padding: 20px; 
        box-sizing: border-box; 
    }
}


.info-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 74%;
    height: fit-content;
}


.form {
margin-top: 40px;
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  position: relative;
  background: url("../img/intro-carousel/1.jpg") no-repeat;
  background-size: cover;
}

#intro .intro-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

#intro .intro-content h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
    margin-top: 20px;
    text-transform: uppercase;
   font-family:  'Montserrat';
    letter-spacing: 1px;
    
}

.responsive {
  width: 100%;
  height: 250px;
    margin-top: 20px;
    opacity: 1;
}

/* Styling for input fields and text areas */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    color: light-dark(rgb(118, 118, 118), rgb(133, 133, 13));
    background-color: #fff;
}

/* Button styling */
.contact-form button {
    padding: 14px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

/* Button hover effect */
.contact-form button:hover {
    background-color: #0056b3;
}

/* Label styling */
.contact-form label {
    font-size: 14px;
    font-weight: bold;
}

/* Styling for First Name and Last Name inputs */
.name-container {
    display: flex;        
    gap: 15px;            
    width: 100%;          
    margin-bottom: 20px;   
}

/* Styling for individual input containers */
.name-container div {
    flex: 1;              
}

/* Container for Email and Looking To */
.email-looking-container {
    display: flex;        
    gap: 15px;            
    width: 100%;           
    margin-bottom: 20px;  
}

/* Styling for individual divs inside the email-looking-container */
.email-looking-container div {
    flex: 1;              
}

/* Container for Property Type and All Cities */
.property-cities-container {
    display: flex;        
    gap: 15px;             
    width: 100%;         
    margin-bottom: 20px;   
}

/* Styling for individual divs inside the property-cities-container */
.property-cities-container div {
    flex: 1;       
}


/* Container for Size and Condition */
.size-condition-container {
    display: flex;   
    gap: 15px;     
    width: 100%; 
    margin-bottom: 20px;  
}

/* Styling for individual divs inside the size-condition-container */
.size-condition-container div {
    flex: 1; 
}

/* Container for Bedrooms and Parking */
.bedrooms-parking-container {
    display: flex; 
    gap: 15px;    
    width: 100%;   
    margin-bottom: 20px; 
}

/* Styling for individual divs inside the bedrooms-parking-container */
.bedrooms-parking-container div {
    flex: 1;               
}


/* Style for the icon */
.form .bi-geo-alt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Width of the circle */
    height: 30px; /* Height of the circle */
    border-radius: 50%; /* This makes the icon circular */
    background-color: #fff; /* Background color for the circle */
    color: #f4b71e;
    font-size: 31px; /* Icon size */
    border: 2px solid #f4b71e; /* Optional: add a border around the circle */
    padding: 23px; /* Optional: space around the icon */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

/* Optional: Change the background color when hovering */
.form .bi-geo-alt:hover {
    background-color: #4a90e2; /* Change to any color you prefer */
    color: white; /* Change icon color on hover */
}

.phone-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Adjust the size of the circle */
    height: 30px; /* Adjust the size of the circle */
    border-radius: 50%; /* Makes the icon circular */
     background-color: #fff; /* Background color for the circle */
    color: #f4b71e;
    font-size: 31px; /* Icon size */
    border: 2px solid #f4b71e; /* Optional: add a border around the circle */
     padding: 23px; /* Optional: space around the icon */
}


.envelope-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Adjust the size of the circle */
    height: 30px; /* Adjust the size of the circle */
    border-radius: 50%; /* Makes the icon circular */
    background-color: #fff; /* Background color for the circle */
    color: #f4b71e; /* Icon color */
    font-size: 31px; /* Icon size */
    border: 2px solid #f4b71e; /* Optional: add a border around the circle */
     padding: 23px; /* Optional: space around the icon */
}

.d-flex {
    display: flex;
    align-items: center;
}

.bi-geo-alt,
.bi-telephone,
.bi-envelope {
    vertical-align: middle; /* This ensures the icon aligns with the text */
}

