/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
* {
  padding: 0;
  margin: 0;
}
.dnd-section .dnd-column {
  padding: 0 0;
}

body {  
    background-color: #f5f5f5;   
}

.video_bg {
  border-radius: 15px;
}

.faq-sec-03 {
  border-radius: 15px;
}

.hs-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #3d40d1; /* Text color matches the border */
    background: transparent; /* Transparent background */
    border-radius: 50px; /* Fully rounded corners */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none; /* Removes underline */
}

.hs-button:hover {
    background: #3d40d1; /* Fills with the border color */
    color: #ffffff; /* White text */
    text-decoration: none;
}

/* Remove focus outline */
.hs-button:focus {
    outline: none;
    box-shadow: none;
}

.mm-panel {
  background:#ff2f3e;
}

/* Active state */
.ashiana-menu-link.active,
.ashiana-menu-link[aria-current="page"] {
    color: #3d40d1; /* Highlight active link */
    font-weight: bold;
    position: relative; /* Needed for absolute positioning of the underline */
}

/* Fix width of underline */
.ashiana-menu-link.active::after,
.ashiana-menu-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px; /* Adjust the spacing */
    width: 80%; /* Ensures it aligns with text width */
    height: 3px;
    background-color: #3d40d1;
    transform: translateX(-50%); /* Centers the underline */
}

.dnd_area-row-0-padding {
  padding-top: 20px; !important
}


.blog-post__timestamp {
  color: #001c46;
}

.blog-post__author a {
  color: #001c46;
}

/* Initial state: hidden and slightly moved down */
h1, .blog-collection, p, .button, .toggle-services-btn  {
    opacity: 0;
    transform: translateY(30px); /* Slightly increased for a smoother effect */
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out; /* Slower and smoother */
}

/* When in viewport, trigger animation */
.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Remove bullet points & default list styling */
.widget-module {
    border-bottom: 2px solid rgba(0, 28, 70, 0.2); /* Lighter gray separator line */
    padding-bottom: 10px; /* Adds spacing between tags and the line */
    margin-bottom: 20px; /* Ensures separation from content below */
}
.widget-module ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Makes the tags appear in a row */
    flex-wrap: wrap; /* Allows wrapping if there are too many tags */
    gap: 12px; /* Adds space between tags */
}
/* Style each tag item */
.widget-module ul li {
    display: inline-block;
}
/* Style the filter links (tags) */
.widget-module ul li a {
    text-decoration: none;
    color: #001c46; /* Primary text color */
    font-weight: bold;
    padding: 8px 12px;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}
/* Hover effect */
.widget-module ul li a:hover {
    color: #171c8f;
}
/* Style for active tag */
.widget-module ul li a.active {
    color: #171c8f;
}

#hs_cos_wrapper_widget_1744268065798 {
  background: #001c46;
  padding-bottom: 20px; /* Increased from 6px for more spacing */
}

#hs_cos_wrapper_widget_1744268065798 a {
  text-decoration: none;
  color: #f5f5f5; /* Optional: Ensures visibility on dark background */
}

#hs_cos_wrapper_widget_1744268065798 a:hover {
  text-decoration: none; /* Optional: Add on hover if needed */
}


/*****************************************/