.elementor-29 .elementor-element.elementor-element-2a95ab9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for text-editor, class: .elementor-element-be8f6f2 *//* =========================================
   NIRWAN DEFENCE ACADEMY HEADER
   ========================================= */

.nda-header {
    width: 100%;
    background: #080a06;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    position: relative;
    z-index: 99999;
}

.nda-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 30px;
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================
   LOGO
   ========================================= */

.nda-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.nda-logo img {
    width: 105px;
    height: 105px;
    object-fit: contain;
    display: block;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nda-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.nda-navigation > a,
.nda-dropdown-toggle {
    position: relative;

    display: flex;
    align-items: center;

    padding: 15px 18px;

    color: #ffffff;
    background: transparent;

    border: none;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* Hover */

.nda-navigation > a:hover,
.nda-dropdown-toggle:hover {
    color: #e4b83d;
}

/* Gold underline */

.nda-navigation > a::after,
.nda-dropdown-toggle::after {
    content: "";
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 7px;

    height: 2px;

    background: #d4af37;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

.nda-navigation > a:hover::after,
.nda-dropdown-toggle:hover::after {
    transform: scaleX(1);
}

/* =========================================
   COURSES DROPDOWN
   ========================================= */

.nda-dropdown {
    position: relative;
}

.nda-dropdown-toggle {
    font-family: inherit;
}

.nda-arrow {
    margin-left: 7px;
    font-size: 13px;

    transition: transform 0.3s ease;
}

.nda-dropdown:hover .nda-arrow {
    transform: rotate(180deg);
}

.nda-dropdown-menu {
    position: absolute;

    top: calc(100% + 5px);
    left: 50%;

    min-width: 210px;

    transform: translateX(-50%) translateY(10px);

    background: #10130c;

    border: 1px solid rgba(212, 175, 55, 0.6);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);

    padding: 8px 0;

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;
}

.nda-dropdown:hover .nda-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

.nda-dropdown-menu a {
    display: block;

    padding: 12px 20px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    transition: all 0.25s ease;
}

.nda-dropdown-menu a:last-child {
    border-bottom: none;
}

.nda-dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.12);
    color: #e4b83d;
    padding-left: 25px;
}

/* =========================================
   MOBILE MENU BUTTON
   ========================================= */

.nda-menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 9px;

    background: transparent;
    border: 1px solid #d4af37;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nda-menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    background: #d4af37;

    transition: all 0.3s ease;
}

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */

@media (max-width: 991px) {

    .nda-container {
        min-height: 78px;
        padding: 6px 20px;
    }

    .nda-logo img {
        width: 85px;
        height: 85px;
    }

    .nda-menu-toggle {
        display: flex;
    }

    .nda-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        background: #080a06;

        border-top: 1px solid rgba(212, 175, 55, 0.35);
        border-bottom: 1px solid rgba(212, 175, 55, 0.5);

        display: none;

        flex-direction: column;
        align-items: stretch;

        padding: 10px 20px 20px;

        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    }

    .nda-navigation.active {
        display: flex;
    }

    .nda-navigation > a,
    .nda-dropdown-toggle {
        width: 100%;

        padding: 14px 10px;

        justify-content: space-between;

        text-align: left;
    }

    .nda-navigation > a::after,
    .nda-dropdown-toggle::after {
        display: none;
    }

    /* Mobile Dropdown */

    .nda-dropdown {
        width: 100%;
    }

    .nda-dropdown-menu {
        position: static;

        width: 100%;

        min-width: 0;

        transform: none !important;

        display: none;

        opacity: 1;
        visibility: visible;

        background: #11140d;

        border: 1px solid rgba(212, 175, 55, 0.25);

        box-shadow: none;

        margin: 0;
    }

    .nda-dropdown.active .nda-dropdown-menu {
        display: block;
    }

    .nda-dropdown-menu a {
        padding: 11px 20px;
    }

    .nda-dropdown-menu a:hover {
        padding-left: 25px;
    }

    .nda-arrow {
        transition: transform 0.3s ease;
    }

    .nda-dropdown.active .nda-arrow {
        transform: rotate(180deg);
    }
}

/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 575px) {

    .nda-container {
        padding: 5px 15px;
    }

    .nda-logo img {
        width: 75px;
        height: 75px;
    }

    .nda-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .nda-navigation {
        padding: 8px 15px 15px;
    }

}/* End custom CSS */