 /*Top Bar Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.top-bar {
    background: #cf1220;
    color: #fff;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1200px;
    margin: auto;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left */
.top-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.top-left img {
    width: 20px;
    height: auto;
}

/* Right */
.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-right a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 18px;
}

.top-right a:hover {
    opacity: 0.8;
}

.top-right i {
    color: #fdd75a;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0px;
}
.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Facebook */
.social.facebook {
    background: #1877F2;
}

/* Instagram */
.social.instagram {
    background: linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}

/* TikTok */
.social.tiktok {
    background: #000;
}

/* Hover Effect */
.social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Mobile friendly */
@media (max-width: 768px) {
    .social {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

 /* End */
 
 body .main-nav {
    position: relative;
    background: #fff;
    width: 100%;
    z-index: 1000;
    padding: 8px 0px;
}
body .main-nav.fixed {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 99;
    transition: padding 0.3s ease;
    border: 0;
    /* border-bottom: 1px solid #d0d5e7; */
    box-shadow: 0 1.411px 2.961px 0 rgb(20 34 74 / 10%), 0 5.392px 7.116px 0 rgb(20 34 74 / 8%);
    padding: 0;
}
body .main-nav .navbar-menu .navbar {
    height: auto !important;
    padding: 0;
}
body .main-nav .logo .icon {
    /* width: 50px; */
    /* height: 50px; */
}
body .main-nav .logo .icon img {
    width: 142px;
    height: auto;
}
body .main-nav .navbar-menu .nav-link {
    color: #000000;
    font-family: Inter, sans-serif;
    font-size: 22px;
    padding: 10px 0;
    font-weight: 500;
    line-height: normal;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.7s;
    margin: 0;
}
.navbar-nav{
    gap: 30px   !important;
}

.whatapp-wrapper a{
      background: #25D366; /* Official WhatsApp Green */
      border-radius:  30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      text-decoration: none;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 10px 20px;
      display: flex;
      gap: 10px;
}
.whatsapp-wrapper a:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}