html{
    margin: 0 !important;
    padding: 0 !important;
}

/* Container for all info boxes */
.wyc_info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;       /* Wrap on smaller screens */
    gap: 40px;             /* Space between boxes */
    margin-top: 50px;
}

/* Individual box */
.wyc_info_inner {
    position: relative;
    display: flex;         /* Flex for better alignment */
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px 0 0;      /* Top spacing only */
}

/* Dots & line */
.wyc_info_inner::after, 
.wyc_info_inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background-color: #000000;
    margin: auto;
}

.wyc_info_inner::before {
    top: -15px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.wyc_info_inner::after {
    top: -110px;
    width: 218px;
    height: 1px;
    transform: rotate(90deg);
}

/* Inner content */
.wyc_info_inner > div {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

.wyc_info_inner > div h2 {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 18px;
    line-height: 23px;
    color: #000;
}

.wyc_info_inner > div h2 span {
    font-family: var(--secondary-font);
}

.wyc_info_inner > div p {
    padding: 10px 30px;
}

/* Rotating background image */
.wyc_info_inner > img:last-child {
    position: absolute;
    left: -0.5px;
    bottom: -50px;
    right: 0;
    top: 0;
    z-index: -1;
    margin: auto;
    animation: rotation 15s linear infinite;
}

/* Rotation keyframes */
@keyframes rotation {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


.container.ad {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  gap: 15px;
}

.container.ad img {
  max-width: 100%;
  height: auto;
}
.collapse.in {
    display: block;
}


/* Make mobile dropdowns part of normal flow */
@media (max-width: 767px) { 
    .dropdown.mobile .dropdown-menu {
        display: none;        /* initially hidden */
        position: relative;   /* so it pushes content below */
        float: none;          /* remove float if any */
        margin: 0;            /* remove any margin that overlaps */
        padding-left: 0;      /* optional, adjust spacing */
        width: 100%;          /* full width */
    }

    .dropdown.mobile.open .dropdown-menu {
        display: block;       /* show menu when open */
    }
    .menu {
        max-height: 400px;
        overflow-y: scroll;
    }
    .dropdown-menu{
        margin-left: 20px !important;        /* your existing spacing */
    }
    .menu li a {
        font-size: 18px;
    }
    .dropdown-menu li a:before {
        content: "-";          /* simple line, you can change to "›" or "|" */
        position: absolute;
        left: -15px;           /* adjust spacing */
        top: 50%;
        transform: translateY(-50%);
        color: #ed8c09;        /* line color */
        font-size: 14px;       /* adjust size */
    }
    .logo2 img {
        height: 67px;
        float: left;
    }
    .carousel-inner {
        margin-top: 15px;
    }
}
