* {
    margin: 0;
    padding: 0;
}

/* Container Custum Width Start */
.container {
    max-width: 1320px;
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Header CSS Start */
.header {
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .navbar-logo img {
    height: 55px;
    width: auto;
    cursor: pointer;
}

.header .navbar .nav-link {
    color: #002964;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

/*.header .navbar .nav-link:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background-color: #002964;*/
/*    height: 1px;*/
/*    width: 0;*/
/*    left: 0;*/
/*    bottom: -3px;*/
/*    transition: width 0.3s ease;*/
/*}*/

/*.header .navbar .nav-link:hover:after {*/
/*    width: 100%;*/
/*}*/

/* ===========================
   Dropdown
=========================== */

.header .dropdown-menu {
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 230px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.header .dropdown-item {
    color: #002964;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px;
    transition: .3s;
}

.header .dropdown-item:hover,
.header .dropdown-item:focus {
    background: #002964;
    color: #fff;
}

/* Arrow spacing */

.header .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* Desktop */

@media (min-width:992px){

    .header .dropdown:hover > .dropdown-menu{
        display:block;
        margin-top:0;
    }

    .header .dropdown-menu{
        margin-top:15px;
        animation:fadeDown .25s ease;
    }

}

/* Mobile */

@media (max-width:991px){

    .header .dropdown-menu{

        position:static !important;

        transform:none !important;

        border:none;

        box-shadow:none;

        padding-left:18px;

        background:transparent;

        margin-top:5px;

    }

    .header .dropdown-item{

        padding:8px 0;

    }

}

@keyframes fadeDown{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.contact-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-buttons .button {
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.contact-buttons .button:first-child {
    color: #FFFFFF;
    background: #002964;
}

.contact-buttons .button:last-child {
    background: #ff3b30;
    color: #fff;
}

@media (min-width: 992px) {
    .sidebar.offcanvas {
        position: static;
        transform: none !important;
        visibility: visible !important;
        background: transparent;
        border: none;
        width: auto !important;
        margin-left: 30px;
    }

    .sidebar .offcanvas-header {
        display: none;
    }

    .sidebar .offcanvas-body {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        width: 100%;
    }

    .navbar-nav {
        margin: 0 auto;
        gap: 14px;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .sidebar {
        background-color: #F9F9F9;
    }

    .header .navbar .custom-toggler {
        font-size: 28px;
        color: #002964;
    }

    .header .navbar .nav-link {
        color: #002964;
    }

    .contact-buttons {
        margin-top: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .contact-buttons .button {
        text-align: center;
    }

    .header .nav-link:hover {
        transform: none;
    }

    .header .navbar .nav-link:hover::after {
        width: 0;
    }
}

@media (max-width: 767px) {
    .header .navbar-logo img {
        height: 40px;
    }

    .header .navbar .nav-item {
        margin-bottom: 10px;
        width: 100%;
    }

    .header .navbar .nav-link {
        font-size: 15px;
    }
}

/* Header CSS End */

/* =========================================
   SUCCESS POPUP CSS
========================================= */

.success-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Popup Box */
.success-popup {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 20px;
    padding: 45px 40px 40px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    overflow: hidden;

    transform: translateY(25px) scale(0.95);
    opacity: 0;
    transition: all 0.35s ease;
}

.success-popup-overlay.show .success-popup {
    transform: translateY(0) scale(1);
    opacity: 1;
}


/* Top Accent */
.success-popup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ff3b30;
}


/* Close Button */
.success-popup-close {
    position: absolute;
    top: 15px;
    right: 17px;

    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;

    background: #f3f4f6;
    color: #555;

    font-size: 24px;
    line-height: 36px;
    cursor: pointer;

    transition: all 0.25s ease;
}

.success-popup-close:hover {
    background: #ff3b30;
    color: #ffffff;
    transform: rotate(90deg);
}


/* Success Icon */
.success-popup-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(0, 41, 100, 0.08);
}

.success-popup-icon svg {
    width: 65px;
    height: 65px;
}


/* Circle */
.success-popup-circle {
    stroke: #002964;
    stroke-width: 2;
}


/* Check */
.success-popup-check {
    stroke: #ff3b30;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;

    stroke-dasharray: 50;
    stroke-dashoffset: 50;
}


/* Check Animation */
.success-popup-overlay.show .success-popup-check {
    animation: successCheck 0.6s ease forwards 0.25s;
}

@keyframes successCheck {
    to {
        stroke-dashoffset: 0;
    }
}


/* Label */
.success-popup-label {
    display: inline-block;
    margin-bottom: 10px;

    color: #ff3b30;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Heading */
.success-popup h2 {
    margin: 0 0 12px;

    color: #002964;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}


/* Description */
.success-popup p {
    margin: 0 auto 28px;
    max-width: 400px;

    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* Done Button */
.success-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 130px;
    padding: 13px 28px;

    border: none;
    border-radius: 8px;

    background: #002964;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.25s ease;
}

.success-popup-btn:hover {
    background: #ff3b30;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 59, 48, 0.25);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .success-popup-overlay {
        padding: 15px;
    }

    .success-popup {
        max-width: 100%;
        padding: 40px 25px 30px;
        border-radius: 16px;
    }

    .success-popup-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }

    .success-popup-icon svg {
        width: 57px;
        height: 57px;
    }

    .success-popup h2 {
        font-size: 27px;
    }

    .success-popup p {
        font-size: 14px;
        line-height: 1.6;
    }

    .success-popup-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 21px;
    }

    .success-popup-btn {
        width: 100%;
    }
}