.max-w-6xl-r{
    max-width: 100% !important;
}

body{
padding-top:40px;
}

/* google translate bar */
.goog-te-banner-frame{
position:fixed !important;
top:0;
width:100%;
z-index:9999;
}

/* hide google logo */
.goog-logo-link{
display:none !important;
}

.goog-te-gadget{
font-size:0;
}

.goog-te-combo{
display:none;
}

/* when translate active */
.translate-active{
padding-top:40px;
}


/* our expertise */
.service-card {
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ea580c; /* orange border */
    box-shadow: 0 25px 50px rgba(234, 88, 12, 0.35);
}

/* Button style */
.service-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 600;
    color: #ea580c;
    transition: all 0.3s ease;
}

.service-card:hover .service-btn {
    background: #bfa46b;   /* tumhara custom color */
    color: #fff;
    box-shadow: 0 10px 20px rgba(191, 164, 107, 0.5);
}

/* ACTIVE NAV LINK */
.active-link {
  color: #987243 !important;   /* brown color */
  position: relative;
  border-bottom: 2px solid ;

}

.active-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px solid;
  width: 100%;
  height: 2px;
  background-color: #987243;  /* underline brown */
  border-bottom: 4px;
}


/* DOT STYLE */
.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER */
.dot:hover {
  background: #ffffff;
  transform: scale(1.2);
}

/* ACTIVE DOT */
.active-dot {
  background: #bfa46b; /* gold color */
  width: 24px;
  border-radius: 20px;
}