:root {
    --primary: #7D1B1C;
    --secondary: #FEF1DE;
    --text-primary: #ef476f;
}

.navbar-logo {
    height: 40px;
    display: flex;
    object-fit: fill;
}

.navbar-logo img {
    height: 100%;
}

.phone-number {
    background: var(--primary);
    text-decoration: none;
}

.navbar {
    background-color: var(--secondary);
}
.nav-link.active{
    color:#ef476f !important;
    font-weight:700 !important;
}
.line-style {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 200px;
    place-self: center;
}

.line-style::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ef476f;
    border-radius: 50%;
    box-shadow: 12px 0 0 #ef476f, 24px 0 0 #ef476f;
    /* 3 dots */
}

.line-style::after {
    content: "";
    flex: 1;
    height: 4px;
    background: #ef476f;
    margin-left: 20px;
    border-radius: 20px;
}

.contact-heading{
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
}
.contact-sub-head{
    color:#ff8b00;
    font-weight: bold;
    font-size: 26px
}
.sub-btn{
    background:#ff8b00;
    border-radius:20px;
    padding:5px 20px;
    width: fit-content;
    display: flex;
    place-self: center;
}
.map{
    border:0;
    border-radius:20px;
    width: 100%;
}
.footer-area p{
  cursor:pointer;
  transition:.3s;
  margin-bottom:6px;
}

.nav-link.active {
    color: #ff6600 !important;
    border-bottom: 2px solid #ff6600;
  }
.footer-area p:hover{
  color:#ff8b00;
}
/* social icons */
.social-btn{
  width:44px; height:44px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:#1f2a36;            /* dark circle on the same footer tone */
  color:#fff; text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-size:1.1rem;
}
.social-btn:hover{ transform:translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,.35); }

/* brand accent on hover */
.social-btn.fb:hover{ background:#1877F2; }
.social-btn.ig:hover{ background:#E1306C; }
.social-btn.x:hover { background:#000; }
.social-btn.li:hover{ background:#0A66C2; }
.social-btn.yt:hover{ background:#FF0000; }
.free-demo-footer{
    display: flex;
    place-self: center;
}
p{
    font-size: 18px;
}
.col-lg-7 ul li{
  font-size: 20px;
}
/* animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* media query */

@media (max-width: 991.98px) {
    .banner {
        padding-top: 130px !important;
    }
}
/* at bottom of style.css  */
@media(max-width:768px){
  .wrap-rev{
    display:flex !important;
    flex-direction:column-reverse !important;
  }
}
