@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}

html,
body {
  overflow-x: hidden;
}

.fixed-top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
}

/* Push page content down */
body {
  padding-top: 140px;
}

.top-header {
  background-color: #00A651;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.top-contact-link{
  color: #fff;
  transition: 0.3s ease;
}

.top-contact-link i{
  color: #fff;
  font-size: 13px;
}

.top-contact-link span{
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.top-contact-link:hover{
  opacity: 0.85;
}

.top-contact-link:hover span,
.top-contact-link:hover i{
  color: #19e35f;
}

.nav-link {
  margin-left: 24px;
  color: #1D1D1D;
  font-weight: 600;
}

.nav-link:hover {
  color: #00A651 !important;
}

.nav-icon-link,
.mobile-top-icon {
  margin-left: 0 !important;
  padding: 0 !important;
  font-size: 18px;
  color: #1D1D1D;
}

.nav-icon-link:hover,
.mobile-top-icon:hover {
  color: #00A651 !important;
}

.nav-icon-btn {
  border: none;
  background: transparent;
  padding: 0;
  color: #1D1D1D;
  font-size: 18px;
  line-height: 1;
  transition: 0.3s ease;
}

.nav-icon-btn:hover {
  color: #00A651;
}

.nav-icon-btn:focus {
  outline: none;
  box-shadow: none;
}

.navbar-search-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  background: #fff;
  border-top: 1px solid #e9ecef;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1055;
}

.navbar-search-panel.open {
  max-height: 500px;
  overflow: visible;   /* important */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 16px 0;
}

.navbar .form-select {
  background-color: transparent !important;
  border: none;
}

.navbar .form-select:focus {
  box-shadow: none;
}

.search-bar {
  border: 1px solid #00A651;
  border-radius: 8px;
  padding: 5px 8px;
  background-color: white;
  position: relative;
}

.custom-select-wrapper {
  position: relative;
  flex: 0 0 170px;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  border: none;
  background-color: transparent;
  width: 100%;
}

.dropdown-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #333;
}

.separator {
  width: 1px;
  height: 30px;
  background-color: #ccc;
  margin: 0 10px;
}

.search-bar input {
  border: none;
  outline: none;
  flex-grow: 1;
}

.search-bar input:focus {
  box-shadow: none;
}

.search-bar select:focus {
  box-shadow: none;
}

.search-bar select,
.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 12px;
}

.search-bar button[type="submit"] {
  white-space: nowrap;
  background-color: white;
  border: none;
  padding: 0 16px !important;
  color: #00A651;
}

.search-close-btn {
  border: none;
  background: transparent;
  color: #555;
  font-size: 16px;
  margin-left: 10px;
  padding: 0 8px;
  transition: 0.3s ease;
}

.search-close-btn:hover {
  color: #dc3545;
}

.search-close-btn:focus {
  outline: none;
  box-shadow: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
}

/* remove border and background */
.navbar-toggler {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: none;
  font-size: 1.5rem;
  color: #00A651;
}

.custom-toggler-icon {
  color: #00A651;
  font-size: 1.6rem;
}

.search-input-area{
  position: relative;
}

.suggestion-box{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 9999;
  max-height: 350px;
  overflow-y: auto;
}

.suggestion-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #f1f1f1;
  transition: 0.3s ease;
}

.suggestion-item:last-child{
  border-bottom: none;
}

.suggestion-item:hover{
  background: #f8f8f8;
}

.suggestion-thumb{
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f2f2f2;
}

.suggestion-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestion-content{
  flex: 1;
  min-width: 0;
}

.suggestion-title{
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-price{
  font-size: 13px;
  color: #666;
}

.no-suggestion{
  padding: 12px 14px;
  font-size: 14px;
  color: #777;
}

/* mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    width: 100%;
    padding: 10px 0;
    background: #fff;
  }

  .navbar-nav .nav-link {
    margin-left: 0 !important;
    margin-bottom: 10px;
  }

  .navbar-search-panel.open {
    max-height: 260px;
    padding: 12px 0;
  }

  .search-bar {
    flex-wrap: nowrap;
    padding: 4px 6px;
  }

  .custom-select-wrapper {
    flex: 0 0 120px;
    max-width: 120px;
  }

  .search-input-area {
    flex: 1 1 auto;
    min-width: 0;
  }

  .search-input-area input {
    width: 100%;
    min-width: 0;
    padding: 8px 6px;
    font-size: 14px;
  }

  .search-bar button[type="submit"] {
    flex-shrink: 0;
    padding: 4px 10px !important;
    font-size: 14px;
  }

  .separator {
    display: none;
  }

  .dropdown-icon {
    display: none !important;
  }

  .mobile-top-icon {
    margin-left: 0 !important;
    padding: 0 !important;
    font-size: 18px;
  }
}

@media (max-width: 767px){
  .suggestion-box{
    max-height: 280px;
  }

  .suggestion-title{
    font-size: 13px;
  }

  .suggestion-price{
    font-size: 12px;
  }

  .suggestion-thumb{
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 991.98px){
  .top-header-row-second{
    justify-content:flex-start;
    gap:18px;
    flex-wrap:wrap;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-top: 155px;
  }

  .top-header {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: start !important;
    font-size: 12px;
  }

  .top-header > .d-flex:first-child {
    grid-column: 1 / 2;
    grid-row: 1;
    min-width: 0;
  }

  .top-header-text {
    display: none;
  }
  .quote{
    display:none !important;
  }

  .top-header-right {
    display: contents !important;
  }

  .topbar-currency-wrap {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: end;
    align-self: start;
  }

  .top-header-right .top-contact-link:first-child {
    grid-column: 1 / 2;
    grid-row: 2;
    justify-self: start;
  }

  .top-header-right .top-contact-link:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 3;
    justify-self: start;
  }

  .top-contact-link {
    font-size: 12px !important;
  }

  .top-contact-link i {
    font-size: 12px !important;
  }

  .top-contact-link span {
    font-size: 12px !important;
    line-height: 1.3;
  }

  .topbar-currency-select {
    min-width: 90px;
    height: 26px !important;
    font-size: 13px;
    padding: 4px 28px 4px 10px;
  }

  .search-bar button[type="submit"] {
    padding: 4px 8px !important;
  }

  .navbar-search-panel.open {
    max-height: 300px;
  }
}



.mobile-icon-group{
  gap: 46px !important;
}

.mobile-icon-group .mobile-top-icon,
.mobile-icon-group .nav-icon-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}




































.services-hero{
background:linear-gradient(135deg,#f8fbff,#eef6ff);
padding:100px 0;
}

.hero-title{
font-size:48px;
font-weight:700;
color:#0b2b40;
}

.hero-subtitle{
max-width:700px;
margin:auto;
font-size:18px;
color:#6c757d;
margin-top:20px;
}


.section-title{
font-size:36px;
font-weight:700;
color:#0b2b40;
}

.section-desc{
color:#6c757d;
font-size:16px;
line-height:1.7;
}


.service-card{
background:white;
border-radius:16px;
padding:35px;
height:100%;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.1);
}


.service-icon{
width:60px;
height:60px;
background:#ebf6e0;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#0f9f41;
margin-bottom:20px;
}


.services-detail h3{
font-weight:700;
margin-bottom:15px;
color:#0b2b40;
}

.services-detail p{
color:#6c757d;
line-height:1.7;
}


@media(max-width:768px){

.hero-title{
font-size:32px;
}

.section-title{
font-size:26px;
}

.services-hero{
padding:70px 0;
}

.service-card{
padding:25px;
}

}