#nav_logo {
    width: 20% !important;
}

@media (max-width: 768px) {
    #nav_logo {
        width: 40% !important;
    }
}

@media (max-width: 480px) {
    #nav_logo {
        width: 55% !important;
    }
}

.single-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #8B8F99;
}

.icon-circle {
    width: 42px;
    height: 42px;
    border: 2px dotted #f6d166;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 15px;
    color: #f6d166;
}

.rotate {
    animation: spin 6s linear infinite;
}

.rotate i {
    animation: spin-reverse 6s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.nav-area ul li a {
    position: relative;
    padding: 8px 0;
    font-weight: 500;
    color: #222;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-area ul li a:hover {
    color: #fde27b;
}

.nav-area ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #fde27b;
    transition: width 0.3s ease;
}

.nav-area ul li a:hover::after {
    width: 100%;
}

.nav-area ul li a.active {
    color: #fde27b;
}

.nav-area ul li a.active::after {
    width: 100%;
}

.why-choose-us-section {
    padding: 80px 0;
    background-color: #f9fbff;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.why-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    z-index: 1;
    transition: color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.why-card .shutter {
    position: absolute;
    inset: 0;
    background: #0d6efd;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
    z-index: -1;
}

.why-card:hover .shutter {
    transform: scaleX(1);
}

.why-card:hover h5,
.why-card:hover p,
.why-card:hover .icon i {
    color: #ffffff;
}

.why-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.why-card .icon i {
    font-size: 28px;
    color: #0d6efd;
    transition: color 0.3s ease;
}

.why-card:hover .icon {
    background: rgba(255, 255, 255, 0.2);
}

.why-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.why-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.shutter {
    transform: scaleY(0);
    transform-origin: top;
}

.why-card:hover .shutter {
    transform: scaleY(1);
}

.mv-section {
    padding: 90px 0;
    background: #f9fbff;
}

.mv-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mv-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.mv-block {
    margin-bottom: 35px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.values-list i {
    color: #0d6efd;
}

.certification-box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.certification-box h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cert-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.cert-item .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-item .icon i {
    font-size: 22px;
    color: #0d6efd;
}

.cert-item h6 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cert-item p {
    font-size: 14.5px;
    color: #555;
    margin: 0;
}

.cert-footer {
    margin-top: 25px;
    font-size: 15px;
    color: black;
    font-weight: bold;
}

@media (max-width: 767px) {

    .mv-content h3,
    .certification-box h3 {
        font-size: 24px;
    }
}

.services-premium {
    padding-bottom: 100px;
    /* background: linear-gradient(180deg, rgba(32, 40, 45, 0.1) 0%, rgba(255, 255, 255, 0.1) 96.54%) */
}

.services-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 17px;
    color: black;
    margin-bottom: 70px;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content {
    padding: 28px;
}

.service-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content .intro {
    font-size: 15px;
    color: black;
    margin-bottom: 12px;
}

.service-content ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

.service-content ul li {
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
}

.footer-text {
    font-size: 14px;
    color: black;
}

@media (max-width: 767px) {
    .services-header h2 {
        font-size: 30px;
    }

    .service-image img {
        height: 200px;
    }
}

.compliance-section {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #f8fbff, #ffffff); */
}

.compliance-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.compliance-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 70px;
}

.compliance-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.compliance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 65px rgba(13, 110, 253, 0.18);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.card-header i {
    font-size: 26px;
    color: #0d6efd;
}

.card-header h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.card-desc {
    font-size: 15.5px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compliance-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

.compliance-list i {
    color: #0d6efd;
}

.compliance-footer {
    margin-top: 60px;
}

.compliance-footer p {
    font-size: 16px;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .compliance-header h2 {
        font-size: 30px;
    }

    .compliance-card {
        padding: 30px 25px;
    }
}

.process-flow-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7faff, #ffffff);
}

.process-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.process-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 80px;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #0d6efd, #6610f2);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-icon i {
    font-size: 26px;
    color: #0d6efd;
}

.step-content {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-4px);
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .process-timeline::before {
        left: 28px;
    }

    .process-step {
        gap: 20px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
    }

    .step-icon i {
        font-size: 22px;
    }

    .process-header h2 {
        font-size: 30px;
    }
}

.brand-intro-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #f7faff, #ffffff);
}

@media screen and (max-width: 768px) {
    .brand-intro-section {
        padding: 50px 0 !important;
    }
}


.brand-tag {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.brand-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.brand-content h2 span {
    font-size: 22px;
    font-weight: 600;
    color: #666;
}

.subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 20px;
}

.brand-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

.brand-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

.brand-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 8px;
}

.brand-list i {
    color: #0d6efd;
}

.brand-footer {
    margin-top: 25px;
    font-size: 16px;
    color: #333;
}

.brand-visual img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .brand-content h2 {
        font-size: 30px;
    }

    .subtitle {
        font-size: 18px;
    }
}


