.ag-header-wrapper .navbar-expand-lg .navbar-nav .nav-link.active {
    color: var(--text-tertiary-color);
    font-weight: var(--secondary-font-weight);
}

.ag-header-wrapper {
    box-shadow: 0px 2px 40px 0px rgba(15, 15, 15, 0.05);
}


.ag-header-wrapper .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--text-primary-color);
    font-weight: var(--secondary-font-weight);
    padding-right: 1rem;
    font-size: var(--text-base-font-size);
}

.ag-header-wrapper .toggle-icon {
    align-items: center;
    display: flex;
}
.toggle-icon i{
    font-size: 30px!important;
}

.ag-brands {
    padding-top: 1rem;
}
.ag-header-wrapper .navbar-brand img{
    max-width: 150px;
    animation: flip 4s linear infinite;
}
.ag-canvas-logo{
    max-width: 150px;
}
@keyframes flip {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(90deg);
    }
    50% {
        transform: rotateY(180deg);
        opacity: 0; /* Make the front invisible halfway */
    }
    75% {
        transform: rotateY(270deg);
    }
    100% {
        transform: rotateY(360deg);
        opacity: 1; /* Make the front visible again */
    }
}

.fixed-top {
    position: sticky;
    top: 0;
    width: 100%;
}

.ag-header-wrapper .navbar-nav {
    gap: 25px;
}

#scrollToTopBtn {
    position: fixed;
    bottom: 75px;
    right: 20px;
    padding: 10px 15px;
    background: #AE1FA2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none; /* Hidden by default */
    font-size: 16px; /* Adjust font size if needed */
    display: flex; /* Flexbox for icon alignment */
    align-items: center; /* Center the icon vertically */
    z-index: 999;
}
.navbar-toggler-icon {
    background: none; /* Remove the default background */
    border: none; /* Remove the border */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center align items vertically */
    justify-content: center; /* Center align items horizontally */
    width: 40px; /* Adjust width as needed */
    height: 40px; /* Adjust height as needed */
}

.navbar-toggler-icon::before {
    content: ""; /* Clear the default content */
}

.navbar-toggler-icon i {
    font-size: 30px; /* Adjust size as needed */
    color: #000; /* Change color if needed */
}
.navbar-toggler i{
    font-size: 30px; /* Adjust size as needed */
    color: #000; /* Change color if needed */
}
.ag-header-wrapper.scrolled .navbar-toggler i{
    color:#000;
    font-size: 30px;
}
.navbar-toggler:focus{
    box-shadow: none;

}
.navbar-toggler{
    border:none;
}
.ag-header-wrapper {
    background: #fff;
    /* Default background color */
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    /* Smooth transition */
}


.nav-link.active {
    font-weight: bold;
    /* Example styling */
    color: #007bff;
    /* Change color for active link */
}

.offcanvas {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  
  .contact-content {
    display: flex;
  }
  
  .contact-content h6 {
    font-size: 18px;
    font-weight: 600;
  }
  
  .contact-content a {
    color: #7D7D7D;
    text-decoration: none;
    font-size: 14px;
  }
  .contact-content img{
    max-width: 150px;
  }
  .double-line {
    position: fixed; /* Fixed position to stay in view while scrolling */
    top: 0;
    right: 5%; /* Align to the right side */
    height: 100%; /* Full height */
    width: 10px; /* Width of the line */
    z-index: 1000; /* Ensure it's on top */
}

/* Pseudo-elements for double stroke */
.double-line::before,
.double-line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%; /* Full width of the parent */
    height: 100%; /* Full height of the parent */
    border-right: 5px solid #AE1FA2; /* First color */
    box-shadow: 5px 0 0 #FBCA00; /* Second color with a slight offset */
}

.double-line::after {
    border-right: 5px solid #AE1FA2; /* Second color */
    box-shadow: 1px 0 0 #FBCA00; /* First color with a slight offset */
    z-index: -1; /* Place it behind the first line */
}