 /* Navbar main */
.ftco-navbar-light{
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:9999;
    background:#1a1a1a14 !important;
    padding:5px 0;
}

/* Container Layout */
#ftco-navbar .container{
    display:flex;
    align-items:center;
}

/* Logo */
.logo{
    height:60px;
    width:auto;
}

/* Hide second logo */
.logo1{
    display:none;
}

/* Desktop Navbar Layout */
@media (min-width:992px){

#ftco-nav{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    width:100%;
}

/* Menu center */
.navbar-nav{
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:20px;
}

/* Search right */
.search-location{
    margin-left:20px;
}

}

/* Nav links */
.navbar-nav .nav-link{
    color:#fff !important;
    font-size:16px;
    font-weight:500;
}

/* Phone icon spacing */
.navbar-nav .fa-phone{
    margin-right:5px;
}

/* Search box */
.search-location{
    display:flex;
    align-items:center;
}

.search-location .form-group{
    position:relative;
    margin:0;
}

.search-location input{
    height:38px;
    border-radius:30px;
    padding:0 40px 0 15px;
    border:none;
}

.search-location button{
    position:absolute;
    right:5px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:transparent;
    color:#333;
}

/* Toggle button */
.navbar-toggler{
    border:none;
    outline:none;
    margin-left:auto;
}

/* Tablet & Mobile */
@media (max-width:991px){

#ftco-navbar .container{
    flex-wrap:wrap;
}

/* Mobile menu style */
#ftco-nav{
    background:#111;
    padding:20px;
    width:100%;
}

/* Vertical menu */
.navbar-nav{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
}

/* Full width search */
.search-location{
    width:100%;
    margin-top:10px;
}

.search-location input{
    width:100%;
}

}

/* Small mobile */
@media (max-width:576px){

.logo{
    height:45px;
}

.navbar-nav .nav-link{
    font-size:15px;
}

} 



/* *********************************************************************** */


/* Footer Social Meidia */

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;               /* space between icons */
  align-items: center;
  margin-top: 8%;
}

.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;             /* size of the circle */
  height: 48px;
  border-radius: 50%;      /* circle shape */
  color: white;
  font-size: 22px;         /* icon size */
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);  /* subtle shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Facebook solid blue */
.social-icons li a.facebook {
  background-color: #0766ff;
  box-shadow: 0 3px 12px rgba(7, 102, 255, 0.7);
}

/* Instagram gradient */
.social-icons li a.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  box-shadow: 0 3px 12px rgba(81, 91, 212, 0.7);
}

/* Hover effect */
.social-icons li a:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Responsive smaller size on mobile */
@media (max-width: 576px) {
  .social-icons li a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}