@font-face {
    font-family: 'Pyidaungsu';
    src: url('../fonts/Pyidaungsu.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Pyidaungsu', sans-serif !important;
}
.language-switch {
    /* margin-left: auto; */
    color: white;
}

.language-switch a {
    color: white;
    text-decoration: none;
}

/* Services */
.service-section {
    padding: 0 50px;
}
.services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.service {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    /* background-color: #f9f9f9; */
    box-shadow: 0 4px 6px rgba(33, 50, 83, 0.3);
    cursor: pointer;
}

.service:hover {
    box-shadow: 0 40px 40px rgba(33, 50, 83, 0.3);
}
.service img {
    /* width: 50px; */
    height: 50px;
}
@media (max-width: 1024px) {
    .services {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
    }
    .service {
        width: calc(100% - 40px);
        margin: 10px auto;
    }
}
@media (max-width: 762px) {
    .services {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px; /* Adding gap between grid items */
    }
    .service {
        width: calc(100% - 40px);
        margin: 10px auto; /* Ensuring margin on all sides */
    }
    .service img {
        height: 30px;
    }
    .service p {
        font-size: 12px;
    }
}

.all-service {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    /* background-color: #f9f9f9; */
    box-shadow: 0 4px 6px rgba(33, 50, 83, 0.3);
    cursor: pointer;
}

.all-service:hover {
    box-shadow: 0 40px 40px rgba(33, 50, 83, 0.3);
}
.all-service img {
    width: 50px !important;
    height: 50px !important;
    display: inline !important;
}

/* RecentNews Section */
.news-section {
    padding: 0 50px;
}

.card-img-top {
    height: 200px;
}

/* Tax Calendar */
.tax-calendar {
    padding: 0 50px;
}

/* FAQ */
.faq-section {
    padding: 20px;
}
.faq-header {
    font-size: 24px;
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 10px;
}
.faq-question {
    color: #1C6DA7;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
}
.faq-answer {
    margin-top: 10px;
    margin-left: 60px;
}
.faq-question img {
    margin-right: 10px;
    width: 50px;
}
.see-more-btn {
    display: flex;
    justify-content: flex-end;
}

/* Footer */
.footer {
    background-color: #3658A0;
    color: white;
    padding: 40px 0;
}
.footer a {
    color: white;
}
.footer .social-icons img {
    width: 40px;
    margin-right: 20px;
    margin-bottom: 20px;
}
.footer .contact-icons img {
    width: 30px;
    margin-right: 10px;
    margin-bottom: 20px;
}

/* Site Map */
.footer .list-unstyled {
    margin-top: 20px;
}
.footer .list-unstyled li {
    margin-bottom: 20px;
}
.footer .list-unstyled li a {
    text-decoration: none;
}


/* CSS */
.see-more-btn {
    align-items: center;
    background-color:#4963A0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: auto;
}

.see-more-btn:hover,
.see-more-btn:focus {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
    color: rgba(0, 0, 0, 0.65);
}

.see-more-btn:hover {
    transform: translateY(-1px);
}

.see-more-btn:active {
    background-color: #4963A0;
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
    color: rgba(0, 0, 0, 0.65);
    transform: translateY(0);
}

.custom-border-bottom {
    border-bottom: 2px solid #3D6CE7;
    padding-bottom: 5px;
}

.main-section {
    display: flex;
    flex-wrap: wrap;
}

.sidebar {
    width: 100%;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.main-content {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section h5 {
    margin-top: 0;
    font-size: 1.3em;
    line-height: 40px;
}

.section ul {
    list-style-type: none;
    padding: 5px;
    border-radius: 5px;
    line-height: 25px;
}

.section ul li {
    padding: 3px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.sidebar ul li:hover {
    background-color: #ddd;
}

.sidebar ul li.active {
    background-color: #ddd;
}

/* Hide nested lists by default */
.sidebar ul li ul.right-dropdown {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.sidebar ul li ul.taxation-dropdown {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.sidebar ul li ul li {
    padding: 8px;
    background-color: #f9f9f9;
}

.sidebar ul li ul li:hover {
    background-color: #eee;
}

.sidebar ul li ul li.active {
    background-color: #eee;
}

/* Show dropdown on parent item click */
.sidebar ul li.right-has-dropdown.active ul.right-dropdown {
    display: block;
}

.sidebar ul li.taxation-has-dropdown.active ul.taxation-dropdown {
    display: block;
}

@media (min-width: 768px) {
    .container {
        flex-wrap: nowrap;
    }

    .sidebar {
        width: 250px;
        margin-bottom: 0;
    }

    .main-content {
        margin-left: 20px;
    }
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 15px rgba(64,64,64,.1);
}

.responsive-table a {
    color: #0066cc;
}

.responsive-table thead tr {
    background-color: #f4f4f4;
}

.responsive-table td {
    padding: 13px;
    text-align: left;
}

.responsive-table tbody tr:nth-child(odd) {
    background-color: rgba(48, 131, 255, 0.08);
}

.course__sidebar-widget {
    padding: 0px 20px !important;
    padding-bottom: 0px !important;
    margin-bottom: 5px !important;
}

.course__sidebar-search input {
    height: 40px !important;
    padding: 0 10px !important;
}

.course__sidebar-search button {
    top: 8px !important;
}

@media screen and (max-width: 600px) {
    .responsive-table thead {
        display: none;
    }

    .responsive-table tbody tr {
        display: block;
        margin-bottom: 10px;
    }

    .responsive-table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        position: relative;
    }

    .responsive-table tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: calc(50% - 20px);
        padding-right: 10px;
        text-align: left;
        font-weight: bold;
    }
}
