* {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
    color: #103e37 !important;
}

.container {
    max-width: 100% !important;
    width: 85% !important;
    padding: 0 !important;
    padding-left: 0;
    padding-right: 0;
}

.header-banner {
    height: auto !important;
}

.header-banner img {
    width: 100%;
    height: auto !important;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Wrapper của menu */
.menu-wrapper {
    position: relative;
    width: 100%;
    z-index: 100;
}

.section-green {
    background-color: #103e37;
}

.section-green a,
.section-green p,
.section-green .section-title,
.section-green .team-name {
    color: white !important;
}

.section-green .team-name {
    font-size: 25px;
    font-weight: 700;
    color: white !important;
}

.section-green .team-role {
    font-size: 20px;
    font-weight: 700;
    color: yellow !important;
}

.team-name {
    font-size: 25px !important;
    font-weight: 700 !important;
    color: #145D3F !important;
}

.team-role {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #000000 !important;
}


/* Mặc định ẩn nav */
nav {
    display: none !important;
}

.navbar-toggler{
    display: none !important;
}
/* Khi màn hình nhỏ hơn hoặc bằng 981px */
@media screen and (max-width: 981px) {
    .navbar-toggler{
        display: block !important;
        border: none !important;
    }
    nav {
        display: block !important;
        background-color: #145D3F;
        color: #FFFFFF !important;
        padding: 5px 20px !important;
    }

    .menu-wrapper {
        display: none !important;
    }

    .navbar-toggler-icon {
        color: #FFF !important;
    }

    .navbar-toggler {
        border: 1px solid #FFF !important;
    }

    nav .nav-link {
        color: #fff !important;
        text-transform: uppercase;
        font-weight: bold;
    }

    nav .nav-link.active {
        font-weight: bold;
        color: #fff;
    }
}

/* Tên mới để tránh xung đột với Bootstrap */
.custom-navbar {
    background-color: #145D3F;
    display: flex;
    justify-content: flex-start;
    padding: 0 10px;
}

.custom-navbar a{
    font-weight: 700 !important;
}
.mega-menu-container {
    position: absolute;
    top: 100%;
    /* hoặc tuỳ vào layout */
    left: 0;
    width: 100%;
    display: none;
    z-index: 100;
    background: #fff;
    transition: opacity 0.3s ease;
    z-index: 99;
    pointer-events: none;
    /* không bị hover khi ẩn */
    /* hoặc màu nền */
}

/* Mỗi mục trong menu */
.menu-group {
    padding: 10px 12px;
    color: white;
    cursor: pointer;
    user-select: none;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

.menu-group:hover {
    background-color: #145D3F;
    border-bottom: 3px solid white;
}

/* Mega menu dropdown */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    /* background-color: #f9f9f9; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    display: flex;
    transition:
        opacity 0.3s ease-in,
        transform 0.2s ease-in;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    /* hiện bằng JS */
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mega-menu-inner {
    display: flex;
    width: 100%;
}

/* Mỗi cột trong mega menu */

.menu-group:hover,
.menu-group.active {
    background-color: #145D3F;
    border-bottom: 3px solid #4DB2EC;
}

.group-list {
    background-color: #f2f2f2;
    width: 300px;
}

.group-list .nav-link {
    font-weight: 700 !important;
    border-radius: 0 !important;
    /* bỏ bo góc */
    color: #333;
    width: 100%;
    text-align: right;
    padding: 10px 16px;
    border-left: 4px solid transparent;
    transition: background-color 0.2s, border-color 0.2s;
}

.group-list .nav-link:hover {
    background-color: #eaeaea;
}

.group-list .nav-link.active {
    background-color: #4DB2EC;
    color: white;
    border-left: 4px solid #4DB2EC;
}



/* Bên trái */
.group-list {
    background-color: #f2f2f2;
    width: 270px;
    padding: 8px 0;
    margin: 0;
}

.group-list .nav-link {
    border-radius: 0;
    color: #333;
    padding: 10px 16px;
    text-align: right;
    border-left: 4px solid transparent;
}

.group-list .nav-link:hover {
    background-color: #7db16c;
    color: white;
    border-left: 4px solid #2b8d2b;
}

/* Bên phải */
.item-grid {
    flex: 1;
    padding: 16px;
    background-color: #FFFFFF;
}

.item-group-content {
    display: flex;
    flex-direction: column;
    /* xếp theo cột dọc */
    gap: 16px;
}

/* ✅ Mỗi card chiếm 20% chiều rộng container trừ khoảng gap */
.news-card {
    flex: 0 0 calc(20% - 13px);
    /* 5 card/row, trừ gap */
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.2s;
    box-sizing: border-box;
}

.news-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.news-title {
    font-weight: bold;
    margin: 8px;
    font-size: 14px;
}

.news-detail {
    margin: 0 8px 8px;
    font-size: 13px;
    color: #666;
}

/* body */
.top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
    overflow: hidden;
}

.left-tag {
    background-color: red;
    color: white;
    padding: 6px 22px;
    font-weight: bold;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    white-space: nowrap;
}

.center-slogan {
    font-weight: bold;
    color: red;
    flex-grow: 1;
    font-size: 16px;
    text-transform: uppercase;
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
}

.section-title {
    font-weight: bold;
    font-size: 28px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 16px;
}

/* Card styling */
.card-service {
    width: 90% !important;
    border: 2px solid #e0f0ff;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: 0.3s ease-in-out;
}

.card-service:hover {
    border: 2px solid #00c3ff;
    cursor: pointer;
}



.image-wrapper {
    overflow: hidden;
    border-radius: 16px;
    /* nhỏ hơn card 16px */
    margin: 20px 20px 0 20px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    height: 220px;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s ease;
    transform: scale(1);
    /* ban đầu không zoom */
}

.card-service:hover .image-wrapper img {
    transform: scale(1.28);
}

.card-service .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3em;
    /* Tùy vào line-height để khớp chiều cao */
    line-height: 1.5em;
    /* Dòng cao bao nhiêu thì height = 2 * line-height */
}

.card-service .desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3em;
    /* Tùy vào line-height để khớp chiều cao */
    line-height: 1.5em;
    /* Dòng cao bao nhiêu thì height = 2 * line-height */
}

.hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    background: linear-gradient(to top, rgba(0, 195, 255, 0.5), rgba(0, 195, 255, 0));
    transition: height 0.4s ease-in-out;
    z-index: 2;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card-service:hover .hover-overlay {
    height: 100%;
    width: 100%;
    /* Hiển thị toàn bộ ảnh */
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -48px auto 16px;
    z-index: 2;
    position: relative;
    border: 10px solid white;
    /* ← Thêm dòng này */
}

.title {
    font-size: 18px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 12px;
}

.desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    background-color: #00c3ff;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto;
}

/**/

.team-card {
    text-align: center;
    position: relative;
}

.avatar-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.decor-wrap {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    z-index: 1;
    animation: rotate 20s linear infinite;
}

.svg-decor {
    width: 100%;
    height: 100%;
}


.avatar {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    margin: 0 5px;
    color: #28c3aa;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #000;
}

.content-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.team-name {
    font-weight: bold;
    font-size: 1.2rem;
}

.team-role {
    color: gray;
    font-size: 0.95rem;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loadMoreBtn {
    min-width: 120px;
    font-weight: 500;
    border-radius: 20px;
    background-color: #f7b55e;
    color: #fff;
    border: none;
    outline: none;
    box-shadow: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#loadMoreBtn:hover {
    background-color: #e29f42;
    /* màu tối hơn để tạo hiệu ứng hover */
    transform: translateY(-2px);
    /* hiệu ứng nổi nhẹ lên */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* bóng mờ khi hover */
}

#loadMoreBtn:focus,
#loadMoreBtn:active {
    outline: none;
    box-shadow: none;
}

/**/
.section-title {
    text-align: center;
    margin-top: 40px;
    color: #2d624c;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #2d624c;
    margin-bottom: 40px;
}

.card-custom {
    border: none;
    border-radius: 16px !important;
    overflow: hidden;
    transition: transform 0.3s ease;
    will-change: transform;
    /* ⚠️ Tối ưu hiệu suất khi hover */
}

.card-custom .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3em;
    /* Tùy vào line-height để khớp chiều cao */
    line-height: 1.5em;
    /* Dòng cao bao nhiêu thì height = 2 * line-height */
}

.card-custom .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3em;
    /* Tùy vào line-height để khớp chiều cao */
    line-height: 1.5em;
    /* Dòng cao bao nhiêu thì height = 2 * line-height */
}

.card-custom:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.category {
    font-size: 14px;
    color: #ff5722;
}

.meta {
    font-size: 13px;
    color: #999;
    margin-left: 5px;
}

.btn-readmore {
    background-color: #f7b55e;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
}

.btn-readmore:hover {
    border: 1px solid #f7b55e;
}

/**/

.footer {
    position: relative;
    background-color: #103e37;
    color: white;
    padding-top: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer a:hover {
    color: #fff;
}

.footer .footer-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-bottom {
    background-color: #0a2b25;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.support-button {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: #ffeef1;
    color: #103e37;
    border-radius: 25px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.support-button img {
    width: 20px;
    margin-right: 8px;
}

.wave {
    overflow: hidden;
    background-color: white;
    /* phần trắng bên trên */
    line-height: 0;
    margin-bottom: -1px;
    /* tránh có đường line nhỏ */
}

.wave-svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
    /* đảo sóng xuống dưới */
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.image-wrapper {
    width: fit-content;
    display: inline-block;
}

.clipped-img {
    width: 100%;
    height: auto;

    animation: morphClip 6s ease-in-out infinite alternate;
    clip-path: path("M50,0 C200,0 400,50 500,200 C600,350 550,500 400,600 C250,700 100,650 0,500 C-50,350 -20,200 50,0 Z");
    -webkit-clip-path: path("M50,0 C200,0 400,50 500,200 C600,350 550,500 400,600 C250,700 100,650 0,500 C-50,350 -20,200 50,0 Z");
}

/* 🔁 Animation: giãn ra và thu lại clip-path */
@keyframes morphClip {
    0% {
        clip-path: path("M50,0 C200,0 400,50 500,200 C600,350 550,500 400,600 C250,700 100,650 0,500 C-50,350 -20,200 50,0 Z");
        -webkit-clip-path: path("M50,0 C200,0 400,50 500,200 C600,350 550,500 400,600 C250,700 100,650 0,500 C-50,350 -20,200 50,0 Z");
    }

    100% {
        clip-path: path("M30,0 C180,0 420,80 520,180 C620,380 530,520 420,620 C220,720 80,630 10,480 C-30,330 -10,180 30,0 Z");
        -webkit-clip-path: path("M30,0 C180,0 420,80 520,180 C620,380 530,520 420,620 C220,720 80,630 10,480 C-30,330 -10,180 30,0 Z");
    }
}



/**/
.article-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.article-item .image-container {
    width: 100% !important;
    height: 170px !important;
    flex-shrink: 0;
    /* Giữ kích thước cố định */
    object-fit: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-item img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    /* Hiệu ứng zoom mượt */
}

.article-item .image-container:hover img {
    transform: scale(1.1);
    /* Zoom nhẹ 1.1 lần */
}

.pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-item .page-link {
    color: #007bff;
    border: 1px solid #ddd;
    padding: 8px 12px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.pagination .page-item .page-link:hover {
    background-color: #0056b3;
    color: white;
}

/**/
.articles-title {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 8px;
    color: #007bff;
}

.articles-date {
    color: #888;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    font-style: italic;
}

.articles-summary {
    font-weight: 600;
    /* Đậm nhưng nhỏ hơn title */
    font-size: 18px;
    margin-bottom: 16px;
}

.articles-content img {
    width: 100% !important;
    height: auto !important;
    display: block;
}

.title-new {
    background-color: #103e37;
    width: 100%;
    min-height: 30px !important;
    display: flex;
    align-items: center;
    justify-content: left;
}

.title-text {
    font-size: 15px !important;
    margin: 0;
    margin-left: 15px;
    font-weight: 700;
    line-height: 18px;
    color: white;
}


/**/

.service-card {
    position: relative;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px 80px;
    /* đủ khoảng trống cho nút */
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid transparent;
    /* Thêm transition đồng bộ với nút */
    transition: all 0.2s ease-in-out;
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-bottom: 4px solid #009ecf;
    /* Đổi màu khi hover */
}

.img-top {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #ff5e18;
    border-radius: 50%;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(60px);
    /* lệch sang phải */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-wrapper img {
    width: 28px;
    height: 28px;
}

.service-card h5 {
    margin-top: 50px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: #666;
    padding: 0 10px;
}

.read-more {
    position: absolute;
    width: 160px;
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 10px);
    /* bắt đầu thấp hơn */
    opacity: 0;
    /* ẩn */
    padding: 8px 28px;
    font-weight: 600;
    color: #fff;
    background-color: #009ecf;
    border: 2px solid transparent;
    border-radius: 999px;
    transition:
        opacity 0.3s ease-in,
        transform 0.2s ease-in;
    /* mượt hơn chút */
    box-shadow: 0 4px 8px rgba(0, 158, 207, 0.2);
    pointer-events: none;
    /* tránh click khi ẩn */
}

.service-card:hover .read-more {
    opacity: 1;
    color: #FFFFFF;
    transform: translate(-50%, 0);
    /* trượt lên vị trí chuẩn */
    border-color: #009ecf;
    box-shadow: 0 0 12px rgba(0, 158, 207, 0.5);
    pointer-events: auto;
    /* có thể click */
}

.read-more:hover {
    color: #FFFFFF !important;
}

.title {
    font-size: 28px;
    font-weight: bold;
    color: #103e37;
    text-align: center;
    margin: 10px auto;
}

/**/
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #2d624c;
    text-align: center;
    margin: 10px auto;
}

.main-news {
    height: 330px !important;
    display: flex;
    justify-content: flex-start;
    align-items: start;
}

.main-summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    /* Giới hạn số dòng */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    /* Đảm bảo text xuống dòng đúng */
    line-height: 1.7em;
    /* Điều chỉnh khoảng cách dòng */
    max-height: calc(1.7em * 8);
}

.sub-news a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* Giới hạn số dòng */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    /* Đảm bảo text xuống dòng đúng */
    line-height: 1.7em;
    /* Điều chỉnh khoảng cách dòng */
    max-height: calc(1.7em * 2);
}

.carousel-inner img {
    height: 450px !important;
    object-fit: fill !important;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    overflow: hidden;
}

.news-item img {
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.news-content {
    flex: 1;
    text-align: justify;
}

.news-img {
    height: 150px !important;
    float: left;
    vertical-align: top;
}

.news-item {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.news-list ul {
    padding-left: 0;
}

.news-list li {
    list-style: none;
    margin-bottom: 5px;
}

.news-list li a {
    color: #212529;
}

.news-list li::before {
    content: "♦ ";
    color: red;
}

.sub-news a::before {
    content: "♦ ";
    color: red;
}

.item-group-content .news-title::before {
    content: "♦ ";
    color: red;
}

.title-info {
    font-size: 18px !important;
    /* chữ to */
    font-weight: 700 !important;
    /* chữ đậm */
    color: #000;
    /* màu đen */
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.title-info .info {
    font-size: 18px;
    font-weight: 600 !important;
    color: #666;
    /* màu xám nhạt */
    margin-left: 5px;
    font-family: Arial, sans-serif;
}


/**/
/* Contact card styling */
#contact-support {
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 9999;
    color: white;
    /* Màu chữ trên icon */
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: ease-in-out;
}

#box-contact {
    display: none;
    width: 275px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    color: white;
    /* Màu chữ trên icon */
    padding: 10px;
    background-color: #FFF2F2;
    border-radius: 10%;
    margin-bottom: 10px;
}

#contact-support:hover #box-contact {
    display: block !important;
}

/* Header section */
.header_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    background-color: #ff3e3e;
    border-radius: 25px;
    padding: 14.2px 15px;
    margin: 20px 0;
}

.header_footer span {
    flex: 1;
    text-align: center;
}

.phone-icon_footer {
    position: absolute;
    left: 0;
    margin-left: 5PX;
}

.chat-icon_footer .icon {
    font-size: 18px;
}

/* Contact card styling */
.contact-card_footer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 25px;
    padding: 14.2px 15px;
    margin: 20px 0;
    gap: 10px;
}

.contact-number_footer {
    font-size: 15px;
    font-weight: bold;
    color: #003366;
    flex-grow: 1;
    text-align: center !important;
}


.phone-icon_footer {
    width: 38px;
    height: 38px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #003366;
}


/* Phone icon styling */
.phone-icon_footer .icon {
    font-size: 24px;
    color: #003366;
}

/* Contact card styling */
.contact-card {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 14.2px 15px;
    margin: 20px 0;
    gap: 10px;
}

.contact-number {
    font-size: 18px;
    font-weight: bold;
    color: #003366;
    flex-grow: 1;
    text-align: center !important;
}


.phone-icon {
    width: 38px;
    height: 38px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
}


/* Phone icon styling */
.phone-icon .icon {
    font-size: 24px;
    color: #003366;
}

/* Divider styling */
.divider {
    border-top: 2px solid #ff3e3e;
    opacity: 0.6;
    margin: 10px 0;
}