body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */



/* header start */


.navbar-custom {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 18px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(8, 75, 131, 0.12);
    transition: all 0.35s ease-in-out;
}

.navbar-custom .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    min-height: 48px;
}

/* Logo */

.navbar-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    display: block;
    width: 112px;
    height: auto;
    object-fit: contain;
}

/* Menu Wrapper */

.navbar-menu-wrapper {
    display: flex;
    align-items: center;
}

/* Desktop Menu */

@media (min-width: 992px) {

    .navbar-menu-wrapper {
        flex: 1;
        justify-content: center;
    }

    .navbar-custom .offcanvas {
        position: static;
        display: block;
        width: auto;
        height: auto;
        visibility: visible !important;
        background: transparent;
        border: 0;
        transform: none !important;
    }

    .navbar-custom .offcanvas-header {
        display: none;
    }

    .navbar-custom .offcanvas-body {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        overflow: visible;
    }

    .navbar-custom .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: clamp(18px, 2.5vw, 34px);
        width: auto;
        margin: 0;
    }

    .navbar-toggler {
        display: none;
    }

    .mobile-contact-btn {
        display: none !important;
    }

    .desktop-contact-btn {
        display: inline-flex;
    }
}

/* Navigation Links */

.navbar-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 9px 0 !important;
    color: #084b83 !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.7px;
    /* text-transform: uppercase; */
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #dfc063;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #dfc063 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Contact Button */

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 46px;
    padding: 12px 24px;
    border: 1px solid #084b83;
    border-radius: 50px;
    background: #084b83;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.header-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.header-btn:hover {
    border-color: #dfc063;
    background: #dfc063;
    color: #084b83;
}

.header-btn:hover i {
    transform: translate(2px, -2px);
}

/* Mobile Toggler */

.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(8, 75, 131, 0.20);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #084b83;
    font-size: 19px;
}

.navbar-toggler:hover {
    border-color: #dfc063;
    background: #dfc063;
}

.navbar-toggler:hover span {
    color: #084b83;
}

/* Offcanvas */

.offcanvas {
    background: #ffffff;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(8, 75, 131, 0.12);
}

.offcanvas-logo {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.offcanvas-logo img {
    display: block;
    width: 105px;
    height: auto;
    object-fit: contain;
}

.offcanvas .btn-close {
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(8, 75, 131, 0.18);
    border-radius: 50%;
    background-size: 10px;
    opacity: 1;
    box-shadow: none;
}

.offcanvas .btn-close:hover {
    background-color: #dfc063;
}

/* Mobile Offcanvas Body */

.offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
}

.offcanvas-body .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    margin: 0;
}

.offcanvas-body .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(8, 75, 131, 0.09);
}

.offcanvas-body .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 12px 0 !important;
    color: #084b83 !important;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.7px;
}

.offcanvas-body .nav-link::after {
    display: none;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
    color: #dfc063 !important;
}

.mobile-contact-btn {
    margin-top: 28px;
}

.desktop-contact-btn {
    margin-left: 0;
}

/* Restore the horizontal desktop menu after the mobile offcanvas rules. */
@media (min-width: 992px) {

    .navbar-custom .navbar-toggler {
        display: none !important;
    }

    .navbar-custom .offcanvas-body {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: auto;
        padding: 0;
        overflow: visible;
    }

    .navbar-custom .offcanvas-body .navbar-nav {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: auto;
        gap: clamp(18px, 2.5vw, 34px);
    }

    .navbar-custom .offcanvas-body .nav-item {
        width: auto;
        border-bottom: 0;
    }

    .navbar-custom .offcanvas-body .nav-link {
        display: inline-flex;
        width: auto;
        min-height: 0;
        padding: 9px 0 !important;
    }

    .navbar-custom .offcanvas-body .nav-link::after {
        display: block;
    }

    .navbar-custom .mobile-contact-btn {
        display: none !important;
    }
}

/* Sticky Navbar */

.sticky-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 13px 0;
    background: #ffffff;
    border-bottom-color: transparent;
    box-shadow: 0 8px 25px rgba(8, 75, 131, 0.16);
    animation: navbarFadeIn 0.25s ease both;
}

/* .sticky-scroll .navbar-brand img {
    filter: brightness(0) invert(1);
} */

.sticky-scroll .navbar-nav .nav-link {
    color: #084b83 !important;
}

.sticky-scroll .navbar-nav .nav-link:hover,
.sticky-scroll .navbar-nav .nav-link.active {
    color: #dfc063 !important;
}

/* .sticky-scroll .header-btn {
    border-color: #dfc063;
    background: #dfc063;
    color: #084b83;
}

.sticky-scroll .header-btn:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #084b83;
} */


@keyframes navbarFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Tablet and Mobile */

@media (max-width: 991px) {

    .navbar-custom {
        position: relative;
        padding: 14px 0;
    }

    .navbar-custom .container {
        min-height: 44px;
    }

    .navbar-brand img {
        width: 100px;
    }

    .navbar-menu-wrapper {
        margin-left: auto;
    }

    .desktop-contact-btn {
        display: none !important;
    }

    .sticky-scroll {
        position: fixed;
        padding: 12px 0;
    }

    .navbar-custom.sticky-scroll .navbar-toggler {
        display: inline-flex !important;
    }

    .sticky-scroll .navbar-brand img {
        filter: none;
    }
}

#navbarPlaceholder {
    display: none;
}

@media (max-width: 991px) {
    #navbarPlaceholder {
        display: block;
        height: 0;
        transition: height 0.35s ease-in-out;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    .navbar-custom .container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .navbar-brand img {
        width: 100px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
        letter-spacing: 0.4px;
    }

    .header-btn {
        padding-right: 18px;
        padding-left: 18px;
        font-size: 11px;
    }
}

/* Small Mobile */

@media (max-width: 575px) {

    .navbar-custom {
        padding: 12px 0;
    }

    .navbar-brand img {
        width: 94px;
    }

    .navbar-toggler {
        width: 40px;
        height: 40px;
    }

    .navbar-toggler span {
        font-size: 17px;
    }

    .navbar-custom .offcanvas {
        width: min(340px, 88vw);
        max-width: 100%;
    }

    .offcanvas-header {
        min-height: 76px;
        padding: 18px 20px;
    }

    .offcanvas-logo img {
        width: 98px;
    }

    .offcanvas-body {
        padding: 24px 20px;
    }
}

/* header end */




/* banner start */


.ak-hero-section {
    position: relative;
    min-height: 680px;
    padding: 155px 0 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../image/banner.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.ak-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(8, 75, 131, 0.84);
}

.ak-hero-section .container {
    position: relative;
    z-index: 2;
}

.ak-hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
}

.ak-hero-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #dfc063;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.ak-hero-meta {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.ak-hero-meta span {
    margin: 0 9px;
    color: #dfc063;
}

.ak-hero-content h1 {
    max-width: 900px;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.6px;
}

.ak-hero-content h1 span {
    color: #dfc063;
}

.ak-hero-content p {
    max-width: 780px;
    margin: 0 auto 13px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}

.ak-hero-content p:last-of-type {
    margin-bottom: 34px;
}

.ak-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.ak-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 53px;
    padding: 0 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.ak-hero-btn i {
    font-size: 14px;
    transition: transform 0.35s ease;
}

.ak-hero-btn-primary {
    color: #084b83;
    background-color: #ffffff;
    border: 1px solid #ffffff;
}

.ak-hero-btn-secondary {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.ak-hero-btn-primary:hover {
    color: #084b83;
    background-color: #dfc063;
    border-color: #dfc063;
    transform: translateY(-3px);
}

.ak-hero-btn-secondary:hover {
    color: #084b83;
    background-color: #dfc063;
    border-color: #dfc063;
    transform: translateY(-3px);
}

.ak-hero-btn:hover i {
    transform: translateX(4px);
}




@media (min-width: 1400px) {

    .ak-hero-section {
        min-height: 600px;
        padding: 100px 0 150px;
    }

    .ak-hero-content h1 {
        font-size: 46px;
    }

    .ak-hero-content p {
        font-size: 15px;
    }

}




@media (max-width: 1199px) {

    .ak-hero-section {
        min-height: 640px;
        padding: 140px 0 120px;
    }

    .ak-hero-content h1 {
        font-size: 40px;
    }

}



@media (max-width: 991px) {

    .ak-hero-section {
        min-height: 610px;
        padding: 125px 0 105px;
    }

    .ak-hero-overlay {
        background: rgba(8, 75, 131, 0.88);
    }

    .ak-hero-content h1 {
        font-size: 37px;
    }

    .ak-hero-content p {
        font-size: 13px;
    }

}


@media (max-width: 767px) {

    .ak-hero-section {
        min-height: auto;
        padding: 70px 0 70px;
        background-position: center center;
    }

    .ak-hero-overlay {
        background: rgba(8, 75, 131, 0.90);
    }

    .ak-hero-content {
        max-width: 100%;
    }

    .ak-hero-label {
        margin-bottom: 15px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .ak-hero-meta {
        margin-bottom: 20px;
        font-size: 11px;
        line-height: 1.9;
    }

    .ak-hero-meta span {
        margin: 0 5px;
    }

    .ak-hero-content h1 {
        margin-bottom: 22px;
        font-size: 30px;
        line-height: 1.35;
        letter-spacing: -0.3px;
    }

    .ak-hero-content p {
        font-size: 12px;
        line-height: 1.9;
    }

    .ak-hero-content p:last-of-type {
        margin-bottom: 28px;
    }

    .ak-hero-buttons {
        gap: 10px;
    }

    .ak-hero-btn {
        min-height: 48px;
        padding: 0 18px;
        font-size: 11px;
        gap: 9px;
    }

}




@media (max-width: 480px) {

    .ak-hero-section {
        padding: 50px 0 50px;
    }

    .ak-hero-content h1 {
        font-size: 28px;
    }

    .ak-hero-content p {
        font-size: 13px;
    }

    .ak-hero-buttons {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .ak-hero-btn {
        flex: 1;
        min-width: 0;
        padding: 0 10px;
        font-size: 13px;
        gap: 6px;
        white-space: nowrap;
    }

}

/* banner end */






/* floating btn */

.floating-buttons-left {
    position: fixed;
    left: 15px;
    bottom: 3%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}


.float-btn.whatsapp {
    background: #25d366;
}


.float-btn.call {
    background: #084b83;
}

/* end */

/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 45px;
    height: 45px;
    background: #084b83;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 999;
}

/* end */





/* footer section */



.ak-site-footer {
    width: 100%;
    padding: 50px 0 25px;
    overflow: hidden;
    background: #084b83;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.ak-site-footer .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}


.ak-footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.35fr 1.35fr;
    gap: 55px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}



.ak-footer-brand {
    max-width: 370px;
}

.ak-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    text-decoration: none;
}

.ak-footer-logo img {
    display: block;
    width: 110px;
    max-width: 100%;
    height: auto;
    object-fit: contain;

    /* White logo effect */
    filter: brightness(0) invert(1);

    transition: opacity 0.3s ease;
}

.ak-footer-logo:hover img {
    opacity: 0.82;
}

.ak-footer-brand p {
    max-width: 350px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}

.ak-footer-follow-title {
    margin-bottom: 15px;
    color: #dfc063;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}



.ak-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ak-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.35s ease;
}

.ak-footer-social a:hover {
    color: #084b83;
    background: #dfc063;
    border-color: #dfc063;
    transform: translateY(-4px);
}

.ak-footer-social i {
    font-size: 14px;
}



.ak-footer-column h4 {
    position: relative;
    margin: 5px 0 28px;
    padding-bottom: 15px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.ak-footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 2px;
    background: #dfc063;
}

.ak-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ak-footer-column ul li {
    margin-bottom: 14px;
}

.ak-footer-column ul li a {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ak-footer-column ul li a i {
    flex-shrink: 0;
    margin-top: 7px;
    color: #dfc063;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.ak-footer-column ul li a:hover {
    color: #dfc063;
}

.ak-footer-column ul li a:hover i {
    transform: translateX(4px);
}


/* =========================================
   CONTACT
========================================= */

.ak-footer-contact > a,
.ak-footer-contact > p {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ak-footer-contact > a:hover {
    color: #dfc063;
}

.ak-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    color: #dfc063;
    background: rgba(223, 192, 99, 0.14);
    border: 1px solid rgba(223, 192, 99, 0.30);
    border-radius: 50%;
}

.ak-contact-icon i {
    font-size: 12px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.ak-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 28px;
}

.ak-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

.ak-powered-by a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ak-powered-by a:hover {
    color: #ffffff;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1600px) {

    .ak-site-footer {
        padding-top: 100px;
    }

    .ak-footer-top {
        gap: 75px;
    }

    .ak-footer-brand p,
    .ak-footer-column ul li a,
    .ak-footer-contact > a,
    .ak-footer-contact > p {
        font-size: 15px;
    }

}


/* =========================================
   LAPTOP
========================================= */

@media (max-width: 1199px) {

    .ak-footer-top {
        grid-template-columns: 1.5fr 1fr 1.25fr;
        gap: 45px;
    }

    .ak-footer-brand {
        grid-column: span 3;
        max-width: 600px;
    }

    .ak-footer-brand p {
        max-width: 550px;
    }

    .ak-footer-contact {
        grid-column: span 1;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .ak-site-footer {
        padding: 70px 0 25px;
    }

    .ak-site-footer .container {
        padding: 0 25px;
    }

    .ak-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
    }

    .ak-footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }

    .ak-footer-brand p {
        max-width: 650px;
    }

    .ak-footer-contact {
        grid-column: span 1;
    }

}



@media (max-width: 767px) {

    .ak-site-footer {
        padding: 60px 0 22px;
    }

    .ak-site-footer .container {
        padding: 0 20px;
    }

    .ak-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 22px;
        padding-bottom: 45px;
    }

    .ak-footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }

    .ak-footer-logo {
        margin-bottom: 20px;
    }

    .ak-footer-logo img {
        width: 100px;
    }

    .ak-footer-brand p {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.9;
    }

    .ak-footer-follow-title {
        font-size: 15px;
    }

    .ak-footer-column h4 {
        margin-bottom: 23px;
        font-size: 16px;
    }

    .ak-footer-column ul li {
        margin-bottom: 13px;
    }

    .ak-footer-column ul li a {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.8;
    }

    .ak-footer-column ul li a i {
        margin-top: 6px;
    }

    .ak-footer-contact {
        grid-column: span 2;
    }

    .ak-footer-contact > a,
    .ak-footer-contact > p {
        font-size: 13px;
    }

    .ak-footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding-top: 24px;
        text-align: center;
    }

    .ak-footer-bottom p {
        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .ak-footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ak-footer-brand,
    .ak-footer-contact {
        grid-column: span 1;
    }

    .ak-footer-column h4 {
        font-size: 16px;
    }

    .ak-footer-column ul li a {
        font-size: 13px;
    }

    .ak-footer-social a {
        width: 40px;
        height: 40px;
    }

}


/* footer end */



/* about */


.ak-about-section {
    width: 100%;
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.ak-about-layout {
    position: relative;
    min-height: 475px;
    display: flex;
    align-items: center;
}


.ak-about-image {
    position: relative;
    z-index: 3;
    width: 43%;
    height: 390px;
    overflow: hidden;
    border-radius: 14px;
    background: #eeeeee;
    flex-shrink: 0;
}

.ak-about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ak-about-image:hover img {
    transform: scale(1.05);
}


.ak-about-panel {
    position: relative;
    z-index: 1;
    width: 68%;
    min-height: 475px;
    margin-left: -10%;
    padding: 70px 55px 70px 18%;
    background: rgba(8, 75, 131, 0.055);
    display: flex;
    align-items: center;

    border-radius: 15px;
}

.ak-about-content {
    width: 100%;
    max-width: 540px;
}


.ak-about-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #084b83;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ak-about-content h2 {
    margin: 0 0 24px;
    color: #084b83;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1px;
}

.ak-about-content h2 span {
    color: #dfc063;
}

.ak-about-content p {
    margin-bottom: 16px;
    color: #566675;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.95;
}

.ak-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 13px;
    padding: 12px 23px;
    background: #084b83;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    
}

.ak-about-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ak-about-btn:hover {
    background: #dfc063;
    color: #084b83;
}

.ak-about-btn:hover i {
    transform: translateX(4px);
}


@media (max-width: 1199px) {

    .ak-about-section {
        padding: 60px 0;
    }

    .ak-about-layout {
        min-height: 430px;
    }

    .ak-about-image {
        width: 44%;
        height: 350px;
    }

    .ak-about-panel {
        width: 70%;
        min-height: 430px;
        margin-left: -12%;
        padding: 55px 35px 55px 18%;
    }

    .ak-about-content h2 {
        font-size: 36px;
    }

    .ak-about-content p {
        font-size: 13px;
        line-height: 1.9;
    }
}

@media (max-width: 991px) {

    .ak-about-section {
        padding: 60px 0;
    }

    .ak-about-layout {
        min-height: auto;
        display: block;
    }

    .ak-about-image {
        width: 65%;
        height: 360px;
        margin: 0 auto -55px;
    }

    .ak-about-panel {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 105px 55px 60px;
        display: block;
    }

    .ak-about-content {
        max-width: 100%;
    }

    .ak-about-content h2 {
        font-size: 39px;
    }

    .ak-about-content p {
        font-size: 14px;
        line-height: 1.9;
    }
}


@media (max-width: 767px) {

    .ak-about-section {
        padding: 50px 0;
    }

    .ak-about-image {
        width: 78%;
        height: 275px;
        margin-bottom: -35px;
        border-radius: 12px;
    }

    .ak-about-panel {
        padding: 75px 25px 40px;
    }

    .ak-about-label {
        margin-bottom: 13px;
        font-size: 10px;
    }

    .ak-about-content h2 {
        font-size: 31px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }

    .ak-about-content p {
        font-size: 13px;
        line-height: 1.9;
        margin-bottom: 15px;
    }

    .ak-about-btn {
        margin-top: 10px;
        padding: 11px 20px;
        font-size: 13px;
    }
}


@media (max-width: 420px) {

    .ak-about-image {
        width: 82%;
        height: 235px;
        margin-bottom: -28px;
    }

    .ak-about-panel {
        padding: 65px 20px 35px;
    }

    .ak-about-content h2 {
        font-size: 30px;
    }

    .ak-about-content p {
        font-size: 14px;
        line-height: 1.85;
    }
}

/* about end */



/* service */


.ak-services-section {
    width: 100%;
    padding: 50px 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}


.ak-services-header {
    max-width: 730px;
    margin: 0 auto 55px;
}

.ak-services-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #084b83;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ak-services-header h2 {
    margin: 0 0 20px;
    color: #084b83;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1px;
}

.ak-services-header h2 span {
    color: #dfc063;
}

.ak-services-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #687783;
    font-size: 14px;
    line-height: 1.9;
}


.ak-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(8, 75, 131, 0.12);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
}

.ak-service-card:hover {
    border-color: rgba(8, 75, 131, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(8, 75, 131, 0.13);
}


.ak-service-image {
    position: relative;
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #eaf0f5;
}

.ak-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ak-service-card:hover .ak-service-image img {
    transform: scale(1.08);
}

.ak-service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 75, 131, 0.72),
        rgba(8, 75, 131, 0.02) 75%
    );
}



.ak-service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 30px 30px 28px;
}

.ak-service-content h3 {
    min-height: 62px;
    margin: 0 0 5px;
    color: #084b83;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
}

.ak-service-content p {
    margin: 0;
    color: #687783;
    font-size: 15px;
    line-height: 1.95;
}

.ak-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    color: #084b83;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.ak-service-link i {
    color: #dfc063;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ak-service-card:hover .ak-service-link {
    color: #dfc063;
}

.ak-service-card:hover .ak-service-link i {
    transform: translate(3px, -3px);
}


.ak-services-bottom {
    margin-top: 52px;
}

.ak-services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 14px 28px;
    background: #084b83;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.ak-services-btn i {
    color: #dfc063;
    transition: transform 0.3s ease;
}

.ak-services-btn:hover {
    background: #dfc063;
    color: #084b83;
}

.ak-services-btn:hover i {
    color: #084b83;
    transform: translateX(4px);
}


@media (max-width: 1199px) {

    .ak-services-section {
        padding: 50px 0;
    }

    .ak-services-header {
        margin-bottom: 45px;
    }

    .ak-services-header h2 {
        font-size: 40px;
    }

    .ak-service-image {
        height: 215px;
    }

    .ak-service-content {
        padding: 27px 25px;
    }

    .ak-service-content h3 {
        font-size: 18px;
    }

    .ak-service-content p {
        padding-top: 10px;
        font-size: 14px;
    }
}


@media (max-width: 991px) {

    .ak-services-section {
        padding: 50px 0;
    }

    .ak-services-header {
        margin-bottom: 40px;
    }

    .ak-services-header h2 {
        font-size: 38px;
    }

    .ak-service-image {
        height: 220px;
    }

    .ak-service-content h3 {
        min-height: auto;
        font-size: 19px;
    }
}

@media (max-width: 767px) {

    .ak-services-section {
        padding: 50px 0;
    }

    .ak-services-header {
        margin-bottom: 35px;
    }

    .ak-services-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .ak-services-header h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .ak-services-header p {
        font-size: 13px;
        line-height: 1.85;
    }

    .ak-service-image {
        height: 230px;
    }

   
    
    .ak-service-content {
        padding: 27px 24px 25px;
    }

    .ak-service-content h3 {
        font-size: 19px;
        line-height: 1.45;
    }

    .ak-service-content p {
        font-size: 13px;
        line-height: 1.9;
    }

    .ak-service-link {
        padding-top: 12px;
    }

    .ak-services-bottom {
        margin-top: 35px;
    }

    .ak-services-btn {
        padding: 13px 24px;
        font-size: 14px;
    }
}


@media (max-width: 420px) {

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

    .ak-services-header p {
        font-size: 14px;
    }

    .ak-service-image {
        height: 210px;
    }

    .ak-service-content {
        padding: 25px 21px;
    }

    .ak-service-content h3 {
        font-size: 18px;
    }

    .ak-service-content p {
        font-size: 14px;
    }
}

/* servive end */



/* why choose  */


.ak-why-section {
    width: 100%;
    padding: 60px 0;
    background: rgba(8, 75, 131, 0.055);
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.ak-why-intro {
    max-width: 470px;
    padding-right: 25px;
}

.ak-why-label {
    display: inline-block;
    margin-bottom: 17px;
    color: #084b83;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ak-why-intro h2 {
    margin: 0 0 23px;
    color: #084b83;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
}

.ak-why-intro h2 span {
    color: #dfc063;
}

.ak-why-intro-description {
    margin: 0;
    color: #687783;
    font-size: 14px;
    line-height: 1.95;
}

.ak-why-intro h6 {
    margin: 22px 0 0;
    color: #084b83;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.ak-why-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    padding: 13px 24px;
    background: #084b83;
    color: #ffffff;
    border: 1px solid #084b83;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.ak-why-btn i {
    color: #dfc063;
    transition: transform 0.3s ease;
}

.ak-why-btn:hover {
    background: #dfc063;
    border-color: #dfc063;
    color: #084b83;
}

.ak-why-btn:hover i {
    color: #084b83;
    transform: translateX(4px);
}


.ak-why-advantages {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
}

.ak-why-column {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.ak-why-divider {
    width: 1px;
    min-height: 300px;
    background: rgba(8, 75, 131, 0.2);
}


.ak-why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-width: 0;
}

.ak-why-icon {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(223, 192, 99, 0.85);
    border-radius: 8px;
    background: rgba(223, 192, 99, 0.09);
    color: #084b83;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ak-why-item:hover .ak-why-icon {
    background: #084b83;
    border-color: #084b83;
    color: #dfc063;
}

.ak-why-item-content {
    min-width: 0;
}

.ak-why-item-content h3 {
    margin: 0 0 8px;
    color: #084b83;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.ak-why-item-content p {
    margin: 0;
    color: #687783;
    font-size: 12.5px;
    line-height: 1.85;
}


@media (max-width: 1199px) {

    .ak-why-section {
        padding: 50px 0;
    }

    .ak-why-intro {
        padding-right: 15px;
    }

    .ak-why-intro h2 {
        font-size: 38px;
    }

    .ak-why-advantages {
        gap: 22px;
    }

    .ak-why-column {
        gap: 32px;
    }

    .ak-why-item {
        gap: 12px;
    }

    .ak-why-item-content h3 {
        font-size: 15px;
    }

    .ak-why-item-content p {
        font-size: 11.5px;
    }
}


@media (max-width: 991px) {

    .ak-why-section {
        padding:50px 0;
    }

    .ak-why-intro {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .ak-why-intro h2 {
        font-size: 39px;
    }

    .ak-why-intro-description {
        max-width: 680px;
        font-size: 14px;
    }

    .ak-why-advantages {
        gap: 30px;
    }

    .ak-why-column {
        gap: 32px;
    }

    .ak-why-item-content h3 {
        font-size: 16px;
    }

    .ak-why-item-content p {
        font-size: 12.5px;
    }

    .ak-why-divider {
        min-height: 280px;
    }
}


@media (max-width: 767px) {

    .ak-why-section {
        padding: 50px 0;
    }

    .ak-why-label {
        margin-bottom: 15px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .ak-why-intro h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .ak-why-intro-description {
        font-size: 14px;
        line-height: 1.9;
    }

    .ak-why-btn {
        margin-top: 25px;
        padding: 12px 22px;
        font-size: 13px;
    }

    .ak-why-advantages {
        display: block;
    }

    .ak-why-column {
        gap: 28px;
    }

    .ak-why-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
        margin: 30px 0;
    }

    .ak-why-item {
        gap: 13px;
    }

    .ak-why-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .ak-why-item-content h3 {
        margin-bottom: 7px;
        font-size: 16px;
    }

    .ak-why-item-content p {
        font-size: 12.5px;
        line-height: 1.85;
    }
}


@media (max-width: 426px) {

    .ak-why-section {
        padding: 50px 0;
    }

    .ak-why-intro h2 {
        font-size: 30px;
    }

    .ak-why-intro-description {
        font-size: 14px;
    }

    .ak-why-item-content h3 {
        font-size: 15px;
    }

    .ak-why-item-content p {
        font-size: 13px;
    }
}

/* why choose  */


/* cta  */


.ak-cta-section {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}


.ak-cta-box {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 75px 40px;
    background-image: url("../image/banner.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    isolation: isolate;

    background-attachment: fixed;
}

.ak-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    /* background:
        linear-gradient(
            135deg,
            rgba(8, 75, 131, 0.96),
            rgba(8, 75, 131, 0.78)
        ); */

        background: rgba(8, 75, 131, 0.84);
}

.ak-cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-align: center;
}

.ak-cta-label {
    display: inline-block;
    margin-bottom: 17px;
    color: #dfc063;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ak-cta-content h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.8px;

    font-family: "Arvo", serif;
}

.ak-cta-content h2 span {
    color: #dfc063;
}

.ak-cta-content p {
    max-width: 670px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.95;
}

.ak-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 30px;
    padding: 14px 26px;
    background: #dfc063;
    color: #084b83;
    border: 1px solid #dfc063;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.ak-cta-btn i {
    transition: transform 0.3s ease;
}

.ak-cta-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #084b83;
}

.ak-cta-btn:hover i {
    transform: translateX(4px);
}

.ak-cta-content small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1199px) {

    .ak-cta-section {
        padding: 60px 0;
    }

    .ak-cta-box {
        min-height: 360px;
        padding: 65px 35px;
    }

    .ak-cta-content h2 {
        font-size: 38px;
    }
}



@media (max-width: 991px) {

    .ak-cta-section {
        padding: 60px 0;
    }

    .ak-cta-box {
        min-height: 350px;
        padding: 60px 30px;
    }

    .ak-cta-content h2 {
        font-size: 36px;
    }

    .ak-cta-content p {
        font-size: 13px;
    }
}


@media (max-width: 767px) {

    .ak-cta-section {
        padding: 65px 0;
    }

    .ak-cta-box {
        min-height: 390px;
        padding: 55px 23px;
        border-radius: 8px;
        background-position: center;
    }

    .ak-cta-label {
        margin-bottom: 14px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .ak-cta-content h2 {
        margin-bottom: 18px;
        font-size: 30px;
        line-height: 1.25;
        letter-spacing: -0.4px;
    }

    .ak-cta-content p {
        font-size: 14px;
        line-height: 1.9;
    }

    .ak-cta-btn {
        margin-top: 25px;
        padding: 13px 21px;
        font-size: 14px;
    }

    .ak-cta-content small {
        margin-top: 16px;
        font-size: 13px;
    }
}


@media (max-width: 420px) {

    .ak-cta-section {
        padding: 55px 0;
    }

    .ak-cta-box {
        padding: 48px 18px;
    }

    .ak-cta-content h2 {
        font-size: 30px;
    }

    .ak-cta-content p {
        font-size: 14px;
    }

    .ak-cta-btn {
        font-size: 13px;
    }

    .ak-cta-content small {
        font-size: 12px;
    }
}

/* cta end */





/* partner section  */


.ak-partner-section {
    position: relative;
    width: 100%;
    padding: 50px 0 50px;
    background: #ffffff;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.ak-partner-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.ak-partner-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #084b83;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ak-partner-heading h2 {
    margin: 0;
    color: #084b83;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
}

.ak-partner-heading h2 span {
    color:#dfc063;
}

.ak-partner-heading p {
    max-width: 650px;
    margin: 20px auto 0;
    color: #687482;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}


.ak-partner-slider {
    position: relative;
}

.ak-partner-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 335px;
    padding: 28px 25px 25px;
    background: #ffffff;
    border: 1px solid #e7ebf0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    
    transition: all 0.35s ease;
}

.ak-partner-card:hover {
    border-color: #c29232;
    transform: translateY(-7px);
    
}

.ak-partner-logo {
    width: 100%;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-bottom: 25px;
    background: #f7f9fb;
    border-radius: 5px;
}

.ak-partner-logo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 190px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s ease;
}

.ak-partner-card:hover .ak-partner-logo img {
    transform: scale(1.04);
}

.ak-partner-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
}

.ak-partner-content h3 {
    /* min-height: 48px; */
    margin: 0 0 12px;
    color: #084b83;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.ak-partner-content p {
    margin: 0;
    color: #687482;
    font-size: 13px;
    line-height: 1.8;
}


.ak-partner-slider .owl-stage {
    display: flex;
}

.ak-partner-slider .owl-item {
    display: flex;
    height: auto;
}

.ak-partner-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 35px;
}

.ak-partner-slider .owl-dot {
    width: 8px;
    height: 8px;
    padding: 0 !important;
    border: 0;
    border-radius: 50%;
    background: #d8dee5 !important;
    transition: all 0.3s ease;
}

.ak-partner-slider .owl-dot.active {
    width: 25px;
    border-radius: 10px;
    background: #c29232 !important;
}

/* Hide arrows */
.ak-partner-slider .owl-nav {
    display: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .ak-partner-section {
        padding: 30px 0 30px;
    }

    .ak-partner-heading h2 {
        font-size: 40px;
    }

    .ak-partner-card {
        min-height: 325px;
        padding: 25px 20px;
    }

    .ak-partner-logo {
        height: 125px;
    }

    .ak-partner-content h3 {
        font-size: 15px;
    }
}

@media (max-width: 991px) {

    .ak-partner-section {
        padding: 20px 0 20px;
    }

    .ak-partner-heading {
        margin-bottom: 38px;
    }

    .ak-partner-heading h2 {
        font-size: 36px;
    }

    .ak-partner-heading p {
        font-size: 13px;
    }

    .ak-partner-card {
        min-height: 315px;
    }
}

@media (max-width: 767px) {

    .ak-partner-section {
        padding: 20px 0 20px;
    }

    .ak-partner-heading {
        margin-bottom: 30px;
    }

    .ak-partner-label {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .ak-partner-heading h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .ak-partner-heading p {
        margin-top: 15px;
        font-size: 14px;
        line-height: 1.8;
    }

    .ak-partner-card {
        min-height: 305px;
        padding: 22px 18px;
        box-sizing: border-box;
    }

    .ak-partner-logo {
        height: 120px;
        margin-bottom: 22px;
    }

    .ak-partner-logo img {
        max-width: 175px;
    }

    .ak-partner-content h3 {
        min-height: auto;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .ak-partner-content p {
        font-size: 13px;
    }

    .ak-partner-slider .owl-dots {
        margin-top: 28px;
    }
}

@media (max-width: 480px) {

    .ak-partner-section {
        padding: 10px 0 15px;
    }

    .ak-partner-heading h2 {
        font-size: 30px;
    }

    .ak-partner-card {
        min-height: 295px;
        padding: 20px 18px;
    }

    .ak-partner-logo {
        height: 155px;
    }

    .ak-partner-content h3 {
        font-size: 14px;
    }

    .ak-partner-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}
/* partner section end */


/*  */

.ak-reference-leadership-section {
    padding: 60px 0px;
    background: rgba(8, 75, 131, 0.055);
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* Main Heading */

.ak-reference-heading {
    max-width: 850px;
    margin: 0px auto 48px;
}

.ak-reference-section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #084b83;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ak-reference-heading h2,
.ak-reference-trainers-heading h2 {
    margin: 0px 0px 20px;
    color: #084b83;
    font-size: 40px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -0.7px;
}

.ak-reference-heading h2 span,
.ak-reference-trainers-heading h2 span {
    color: #dfc063;
}

.ak-reference-heading p,
.ak-reference-trainers-heading p {
    max-width: 780px;
    margin: 0px auto;
    color: #667789;
    font-size: 15px;
    line-height: 1.95;
}

/* Person Image */

.ak-reference-person-image {
    position: relative;
    height: 350px;
    margin-bottom: 30px;
    overflow: hidden;
}

.ak-reference-navy-box {
    position: absolute;
    left: 18px;
    right: 0px;
    bottom: 0px;
    height: 295px;
    background: #084b83;
    border-radius: 24px 24px 0px 0px;
}

.ak-reference-person-image img {
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 82%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px 18px 0px 0px;
    transform: translateX(-50%);
    transition: transform 0.5s ease;
}

.ak-reference-person:hover .ak-reference-person-image img {
    transform: translateX(-50%) scale(1.035);
}

/* Person Content */

.ak-reference-person-info {
    padding: 0px 8px;
}

.ak-reference-person-info h3 {
    margin: 0px 0px 8px;
    color: #084b83;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
}

.ak-reference-person-role {
    display: inline-block;
    margin-bottom: 16px;
    color: #dfc063;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ak-reference-person-info h4 {
    position: relative;
    padding-left: 15px;
    margin: 0px 0px 18px;
    color: #084b83;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
    border-left: 3px solid #dfc063;
}

.ak-reference-person-info h4 small {
    display: block;
    color: #7b8997;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}

.ak-reference-person-info p {
    margin: 0px;
    color: #667789;
    font-size: 14px;
    line-height: 1.95;
}

/* Trainers Heading */

.ak-reference-trainers-heading {
    max-width: 850px;
    margin: 85px auto 45px;
}

.ak-reference-trainers-heading p {
    max-width: 750px;
}

/* Bottom Note */

.ak-reference-bottom-note {
    max-width: 850px;
    margin: 55px auto 0px;
    padding-top: 28px;
    border-top: 1px solid rgba(8, 75, 131, 0.17);
}

.ak-reference-bottom-note p {
    margin: 0px;
    color: #667789;
    font-size: 14px;
    line-height: 1.9;
}

/* Tablet */

@media (max-width: 1199px) {

    .ak-reference-heading h2,
    .ak-reference-trainers-heading h2 {
        font-size: 37px;
    }

    .ak-reference-person-image {
        height: 315px;
    }

    .ak-reference-navy-box {
        height: 265px;
    }

    .ak-reference-person-image img {
        width: 86%;
        height: 305px;
    }

    .ak-reference-person-info h3 {
        font-size: 22px;
    }

    .ak-reference-person-info p {
        font-size: 13px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .ak-reference-leadership-section {
        padding: 60px 0px;
    }

    .ak-reference-heading {
        margin-bottom: 38px;
    }

    .ak-reference-section-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .ak-reference-heading h2,
    .ak-reference-trainers-heading h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .ak-reference-heading p,
    .ak-reference-trainers-heading p {
        font-size: 13px;
        line-height: 1.85;
    }

    .ak-reference-person-image {
        height: 350px;
    }

    .ak-reference-navy-box {
        left: 30px;
        right: 30px;
        height: 295px;
    }

    .ak-reference-person-image img {
        width: 75%;
        height: 340px;
    }

    .ak-reference-person-info {
        padding: 0px;
    }

    .ak-reference-person-info h3 {
        font-size: 22px;
    }

    .ak-reference-person-role {
        font-size: 12px;
    }

    .ak-reference-person-info h4 {
        font-size: 15px;
    }

    .ak-reference-person-info h4 small {
        font-size: 13px;
    }

    .ak-reference-person-info p {
        font-size: 14px;
        line-height: 1.9;
    }

    .ak-reference-trainers-heading {
        margin: 70px auto 38px;
    }

    .ak-reference-bottom-note {
        margin-top: 45px;
    }
}

/* Small Mobile */

@media (max-width: 575px) {

    .ak-reference-heading h2,
    .ak-reference-trainers-heading h2 {
        font-size: 30px;
    }

   .ak-reference-heading h2 br{
    display: none;
   }

    .ak-reference-heading p,
    .ak-reference-trainers-heading p {
        font-size: 13px;
    }

    .ak-reference-person-image {
        height: 315px;
        margin-bottom: 25px;
    }

    .ak-reference-navy-box {
        left: 20px;
        right: 20px;
        height: 265px;
    }

    .ak-reference-person-image img {
        width: 78%;
        height: 305px;
    }

    .ak-reference-person-info h3 {
        font-size: 22px;
    }

    .ak-reference-person-info h4 {
        font-size: 14px;
    }

    .ak-reference-person-info h4 small {
        font-size: 12px;
    }

    .ak-reference-person-info p {
        font-size: 13px;
    }
}

/* end */


/* form home */

.ak-teaching-application-section {
    padding: 50px 0px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.ak-teaching-form-content {
    padding-right: 20px;
}

.ak-teaching-heading {
    margin-bottom: 35px;
}

.ak-teaching-heading > span {
    display: inline-block;
    margin-bottom: 12px;
    color: #084b83;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ak-teaching-heading h2 {
    margin: 0px 0px 15px;
    color: #084b83;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
}

.ak-teaching-heading h2 strong {
    color: #dfc063;
    font-weight: 600;
}

.ak-teaching-heading p {
    max-width: 620px;
    margin: 0px;
    color: #6c7783;
    font-size: 14px;
    line-height: 1.9;
}

.ak-teaching-form-content label {
    display: block;
    margin-bottom: 10px;
    color: #084b83;
    font-size: 13px;
    font-weight: 500;
}

.ak-field-box {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0px 18px;
    border: 1px solid rgba(8, 75, 131, 0.20);
    border-radius: 50px;
    background: #ffffff;
    transition: 0.3s ease;
}

.ak-field-box i {
    flex: 0 0 18px;
    margin-right: 12px;
    color: #dfc063;
    font-size: 14px;
    text-align: center;
}

.ak-field-box input,
.ak-field-box select {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0px;
    border: 0px;
    outline: none;
    background: transparent;
    color: #26384c;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    box-shadow: none;
}

.ak-field-box input::placeholder {
    color: #9aa4ae;
    font-size: 12px;
}

.ak-field-box select {
    cursor: pointer;
}

.ak-field-box:focus-within {
    border-color: #dfc063;
    background: #fffdf7;
}

.ak-file-field {
    padding-right: 22px;
}

.ak-file-field input[type="file"] {
    display: block;
    height: auto;
    padding: 15px 0px;
    cursor: pointer;
    font-size: 12px;
}

.ak-teaching-form-content small {
    display: block;
    margin-top: 8px;
    color: #8b959f;
    font-size: 11px;
}

.ak-teaching-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 210px;
    min-height: 55px;
    padding: 0px 28px;
    border: 1px solid #084b83;
    border-radius: 50px;
    background: #084b83;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s ease;
}

.ak-teaching-submit-btn i {
    color: #dfc063;
    transition: 0.3s ease;
}

.ak-teaching-submit-btn:hover {
    border-color: #dfc063;
    background: #dfc063;
    color: #084b83;
}

.ak-teaching-submit-btn:hover i {
    color: #084b83;
    transform: translateX(4px);
}

/* Image Design */

.ak-teaching-visual {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    border-radius: 22px;
    background: #084b83;
}

.ak-teaching-visual img {
    width: 100%;
    height: 690px;
    display: block;
    object-fit: cover;
}

.ak-teaching-visual-overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(
        180deg,
        rgba(8, 75, 131, 0.05) 20%,
        rgba(8, 75, 131, 0.92) 100%
    );
}

.ak-teaching-visual-content {
    position: absolute;
    right: 35px;
    bottom: 35px;
    left: 35px;
}

.ak-teaching-visual-content > span {
    display: inline-block;
    margin-bottom: 14px;
    color: #dfc063;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.ak-teaching-visual-content h3 {
    max-width: 430px;
    margin: 0px 0px 16px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.35;
}

.ak-teaching-visual-content p {
    max-width: 420px;
    margin: 0px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.9;
}

.ak-teaching-visual-line {
    width: 65px;
    height: 3px;
    margin: 25px 0px;
    background: #dfc063;
}

.ak-teaching-visual-bottom {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ak-teaching-visual-bottom > i {
    color: #dfc063;
    font-size: 25px;
}

.ak-teaching-visual-bottom strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.ak-teaching-visual-bottom small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 10px;
}

/* Tablet */

@media (max-width: 991px) {
    .ak-teaching-application-section {
        padding: 65px 0px;
    }

    .ak-teaching-form-content {
        padding-right: 0px;
    }

    .ak-teaching-visual {
        min-height: 520px;
    }

    .ak-teaching-visual img {
        height: 520px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .ak-teaching-application-section {
        padding: 50px 0px;
    }

    .ak-teaching-heading {
        margin-bottom: 28px;
    }

    .ak-teaching-heading h2 {
        font-size: 30px;
    }

    .ak-teaching-heading p {
        font-size: 13px;
    }

    .ak-field-box {
        min-height: 52px;
        padding: 0px 16px;
    }

    .ak-field-box input,
    .ak-field-box select {
        height: 50px;
        font-size: 12px;
    }

    .ak-teaching-submit-btn {
        width: 100%;
    }

    .ak-teaching-visual {
        min-height: 440px;
        border-radius: 18px;
    }

    .ak-teaching-visual img {
        height: 440px;
    }

    .ak-teaching-visual-content {
        right: 24px;
        bottom: 25px;
        left: 24px;
    }

    .ak-teaching-visual-content h3 {
        font-size: 27px;
    }

    .ak-teaching-visual-content p {
        font-size: 12px;
    }
}

/* home form */



/* service detail page  */

.ak-service-detail-section {
    width: 100%;
    padding: 75px 0px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}




.ak-service-detail-content {
    padding-right: 20px;
}

.ak-service-detail-image {
    width: 100%;
    height: 390px;
    margin-bottom: 35px;
    overflow: hidden;
    border-radius: 18px;
    background: #eaf0f5;
}

.ak-service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ak-service-detail-content h2 {
    margin: 0px 0px 18px;
    color: #084b83;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.4;
}

.ak-service-detail-content h3 {
    margin: 38px 0px 20px;
    color: #084b83;
    font-size: 20px;
    font-weight: 500;
}

.ak-service-detail-content p {
    margin: 0px 0px 18px;
    color: #687783;
    font-size: 14px;
    line-height: 2;
}

.ak-service-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 25px;
    margin-top: 25px;
}

.ak-service-detail-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ak-service-detail-list-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(223, 192, 99, 0.18);
}

.ak-service-detail-list-item > span i {
    color: #dfc063;
    font-size: 11px;
}

.ak-service-detail-list-item p {
    margin: 0px;
    color: #536575;
    font-size: 13px;
    line-height: 1.8;
}

/* Enquiry Form */

.ak-service-enquiry-box {
    position: sticky;
    top: 110px;
    padding: 32px 28px;
    border: 1px solid rgba(8, 75, 131, 0.12);
    border-radius: 20px;
    background: #ffffff;
}

.ak-service-enquiry-heading {
    margin-bottom: 28px;
}

.ak-service-enquiry-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #dfc063;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.ak-service-enquiry-heading h3 {
    margin: 0px 0px 13px;
    color: #084b83;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
}

.ak-service-enquiry-heading p {
    margin: 0px;
    color: #687783;
    font-size: 12px;
    line-height: 1.9;
}

.ak-enquiry-field {
    margin-bottom: 20px;
}

.ak-enquiry-field label {
    display: block;
    margin-bottom: 9px;
    color: #084b83;
    font-size: 13px;
    font-weight: 500;
}

.ak-enquiry-field input,
.ak-enquiry-field textarea {
    width: 100%;
    padding: 13px 17px;
    border: 1px solid rgba(8, 75, 131, 0.18);
    border-radius: 12px;
    outline: none;
    background: #ffffff;
    color: #26384c;
    font-family: "Poppins", sans-serif;
    font-size: 13px !important;
    resize: vertical;
    transition: 0.3s ease;
}

.ak-enquiry-field input {
    height: 50px;
}

.ak-enquiry-field textarea {
    min-height: 105px;
}

.ak-enquiry-field input::placeholder,
.ak-enquiry-field textarea::placeholder {
    color: #9aa4ae;
    font-size: 13px;
}

.ak-enquiry-field input:focus,
.ak-enquiry-field textarea:focus {
    border-color: #dfc063;
    background: #fffdf7;
}

.ak-enquiry-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: 100%;
    min-height: 52px;
    padding: 0px 22px;
    border: 1px solid #084b83;
    border-radius: 50px;
    background: #084b83;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s ease;
}

.ak-enquiry-submit i {
    color: #dfc063;
    transition: 0.3s ease;
}

.ak-enquiry-submit:hover {
    border-color: #dfc063;
    background: #dfc063;
    color: #084b83;
}

.ak-enquiry-submit:hover i {
    color: #084b83;
    transform: translateX(4px);
}

/* Tablet */

@media (max-width: 1199px) {
   

    .ak-service-detail-content {
        padding-right: 0px;
    }

    .ak-service-detail-image {
        height: 350px;
    }

    .ak-service-enquiry-box {
        padding: 28px 23px;
    }
}

/* Mobile */

@media (max-width: 991px) {
    .ak-service-detail-section {
        padding: 60px 0px;
    }

  

    .ak-service-enquiry-box {
        position: static;
    }
}

@media (max-width: 767px) {
    .ak-service-detail-section {
        padding: 50px 0px;
    }

    
    
   
    .ak-service-detail-image {
        height: 240px;
        margin-bottom: 28px;
        border-radius: 14px;
    }

    .ak-service-detail-content h2 {
        font-size: 22px;
    }

    .ak-service-detail-content h3 {
        margin-top: 30px;
        font-size: 19px;
    }

    .ak-service-detail-content p {
        font-size: 14px;
        line-height: 1.9;
    }

    .ak-service-detail-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ak-service-enquiry-box {
        padding: 27px 22px;
        border-radius: 16px;
    }

    .ak-service-enquiry-heading h3 {
        font-size: 23px;
    }
}

/* service end */



/* contact page start */

.ak-contact-section {
    width: 100%;
    padding: 60px 0px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.ak-contact-heading {
    max-width: 720px;
    margin: 0px auto 50px;
}

.ak-contact-heading > span {
    display: inline-block;
    margin-bottom: 13px;
    color: #084b83;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ak-contact-heading h2 {
    margin: 0px 0px 16px;
    color: #084b83;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
}

.ak-contact-heading h2 strong {
    color: #dfc063;
    
}

.ak-contact-heading p {
    margin: 0px;
    color: #687783;
    font-size: 14px;
    line-height: 1.9;
}

/* Contact Information */

.ak-contact-info {
    position: relative;
    height: 100%;
    padding: 38px 35px;
    overflow: hidden;
    border-radius: 22px;
    background: #084b83;
}



.ak-contact-info-top,
.ak-contact-details,
.ak-contact-info-bottom {
    position: relative;
    z-index: 2;
}

.ak-contact-info-top {
    margin-bottom: 38px;
}

.ak-contact-info-top > span,
.ak-contact-info-bottom > span {
    display: inline-block;
    margin-bottom: 13px;
    color: #dfc063;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
}

.ak-contact-info-top h3 {
    max-width: 350px;
    margin: 0px 0px 17px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
}

.ak-contact-info-top h3 strong {
    color: #dfc063;
    font-weight: 600;
}

.ak-contact-info-top p {
    margin: 0px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.9;
}

.ak-contact-details {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.ak-contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
}

.ak-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(223, 192, 99, 0.65);
    border-radius: 50%;
}

.ak-contact-icon i {
    color: #dfc063;
    font-size: 15px;
}

.ak-contact-detail-item small {
    display: block;
    margin-bottom: 5px;
    color: #dfc063;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.ak-contact-detail-item strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    word-break: break-word;
}

.ak-contact-detail-item p {
    margin: 4px 0px 0px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.9;
}

.ak-contact-info-bottom {
    margin-top: 42px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ak-contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ak-contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(223, 192, 99, 0.55);
    border-radius: 50%;
    color: #dfc063;
    text-decoration: none;
    transition: 0.3s ease;
}

.ak-contact-socials a:hover {
    border-color: #dfc063;
    background: #dfc063;
    color: #084b83;
}

/* Form */

.ak-contact-form-wrapper {
    height: 100%;
    padding: 38px 35px;
    border: 1px solid rgba(8, 75, 131, 0.13);
    border-radius: 22px;
    background: #ffffff;
}

.ak-contact-form-heading {
    margin-bottom: 30px;
}

.ak-contact-form-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #dfc063;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.ak-contact-form-heading h3 {
    margin: 0px;
    color: #084b83;
    font-size: 28px;
    font-weight: 500;
}

.ak-contact-form-wrapper label {
    display: block;
    margin-bottom: 9px;
    color: #084b83;
    font-size: 13px;
    font-weight: 500;
}

.ak-contact-field {
    display: flex;
    align-items: center;
    min-height: 53px;
    padding: 0px 17px;
    border: 1px solid rgba(8, 75, 131, 0.18);
    border-radius: 50px;
    background: #ffffff;
    transition: 0.3s ease;
}

.ak-contact-field i {
    flex: 0 0 18px;
    margin-right: 12px;
    color: #dfc063;
    font-size: 14px;
    text-align: center;
}

.ak-contact-field input,
.ak-contact-field textarea {
    width: 100%;
    min-width: 0;
    border: 0px;
    outline: none;
    background: transparent;
    color: #26384c;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    box-shadow: none;
}

.ak-contact-field input {
    height: 51px;
}

.ak-contact-field textarea {
    min-height: 125px;
    padding: 15px 0px;
    resize: vertical;
}

.ak-contact-field input::placeholder,
.ak-contact-field textarea::placeholder {
    color: #9aa4ae;
    font-size: 11px;
}

.ak-contact-field:focus-within {
    border-color: #dfc063;
    background: #fffdf7;
}

.ak-contact-textarea {
    align-items: flex-start;
    border-radius: 20px;
}

.ak-contact-textarea i {
    margin-top: 18px;
}

.ak-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 190px;
    min-height: 53px;
    padding: 0px 26px;
    border: 1px solid #084b83;
    border-radius: 50px;
    background: #084b83;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s ease;
}

.ak-contact-submit i {
    color: #dfc063;
    transition: 0.3s ease;
}

.ak-contact-submit:hover {
    border-color: #dfc063;
    background: #dfc063;
    color: #084b83;
}

.ak-contact-submit:hover i {
    color: #084b83;
    transform: translateX(4px);
}

/* Map */

.ak-contact-map-wrapper {
    margin-top: 55px;
}

.ak-contact-map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 22px;
}

.ak-contact-map-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #dfc063;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.ak-contact-map-heading h3 {
    margin: 0px;
    color: #084b83;
    font-size: 25px;
    font-weight: 500;
}

.ak-contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #084b83;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s ease;
}

.ak-contact-map-link i {
    color: #dfc063;
}

.ak-contact-map-link:hover {
    color: #dfc063;
}

.ak-contact-map {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    background: #eaf0f5;
}

.ak-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0px;
}

/* Responsive */

@media (max-width: 1199px) {
    .ak-contact-info,
    .ak-contact-form-wrapper {
        padding: 30px 27px;
    }

    .ak-contact-info-top h3 {
        font-size: 26px;
    }

    .ak-contact-form-heading h3 {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .ak-contact-heading {
        margin-bottom: 40px;
    }

    .ak-contact-info {
        height: auto;
    }

    .ak-contact-form-wrapper {
        height: auto;
    }

    .ak-contact-map-wrapper {
        margin-top: 45px;
    }
}

@media (max-width: 767px) {
    .ak-contact-section {
        padding: 50px 0px;
    }

    .ak-contact-heading {
        margin-bottom: 35px;
    }

    .ak-contact-heading h2 {
        font-size: 30px;
    }

    .ak-contact-heading p {
        font-size: 13px;
        line-height: 1.85;
    }

    .ak-contact-info,
    .ak-contact-form-wrapper {
        padding: 28px 22px;
        border-radius: 17px;
    }

    .ak-contact-info-top h3 {
        font-size: 26px;
    }

    .ak-contact-info-top p,
    .ak-contact-detail-item p {
        font-size: 13px;
    }

    .ak-contact-form-heading h3 {
        font-size: 24px;
    }

    .ak-contact-field {
        min-height: 51px;
    }

    .ak-contact-field input {
        height: 49px;
    }

    .ak-contact-submit {
        width: 100%;
    }

    .ak-contact-map-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .ak-contact-map-heading h3 {
        font-size: 22px;
    }

    .ak-contact-map {
        height: 300px;
        border-radius: 15px;
    }
}

@media (max-width: 420px) {
    .ak-contact-heading h2 {
        font-size: 30px;
    }

    .ak-contact-info-top h3 {
        font-size: 24px;
    }

    .ak-contact-detail-item strong {
        font-size: 13px;
    }

    .ak-contact-map {
        height: 270px;
    }
}