.elementor-82 .elementor-element.elementor-element-1d684d5{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-ead440a *//* =========================================
   GODDA DEFENCE ACADEMY
   HEADER CSS
========================================= */

:root {
    --gda-navy: #071a2f;
    --gda-navy-light: #0d2947;
    --gda-red: #d62828;
    --gda-red-dark: #b51f1f;
    --gda-white: #ffffff;
    --gda-light: #f5f7fa;
    --gda-text: #17202a;
}

/* RESET */

.gda-header,
.gda-header * {
    box-sizing: border-box;
}

.gda-header a {
    text-decoration: none !important;
}

.gda-container {
    width: min(1200px, calc(100% - 40px));
    margin: auto;
}

/* HEADER */

.gda-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(7, 26, 47, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

/* NAV */

.gda-nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================
   LOGO
========================================= */

.gda-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.gda-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gda-red);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;

    border: 2px solid rgba(255,255,255,0.8);
}

.gda-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.gda-logo-text strong {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.gda-logo-text span {
    color: #e63946;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* =========================================
   MENU
========================================= */

.gda-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.gda-menu > a,
.gda-dropdown-link {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.gda-menu > a:hover,
.gda-dropdown-link:hover {
    color: #ff5252 !important;
}

/* =========================================
   DROPDOWN
========================================= */

.gda-dropdown {
    position: relative;
}

.gda-dropdown-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gda-dropdown-link span {
    font-size: 15px;
}

.gda-dropdown-menu {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);

    width: 190px;
    padding: 10px;

    background: #ffffff;
    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.gda-dropdown-menu a {
    display: block;
    padding: 11px 13px;
    color: #17202a !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
}

.gda-dropdown-menu a:hover {
    background: #f4f6f8;
    color: var(--gda-red) !important;
}

.gda-dropdown:hover .gda-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* =========================================
   ADMISSION BUTTON
========================================= */

.gda-admission-btn {
    background: var(--gda-red);
    color: #fff !important;

    padding: 12px 18px;
    border-radius: 6px;

    font-size: 13px !important;
    font-weight: 700 !important;

    transition: 0.3s ease;

    box-shadow: 0 6px 18px rgba(214,40,40,0.25);
}

.gda-admission-btn:hover {
    background: #ffffff;
    color: var(--gda-red) !important;
    transform: translateY(-2px);
}

/* =========================================
   MOBILE TOGGLE
========================================= */

.gda-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.gda-toggle span {
    display: block;
    width: 25px;
    height: 2px;

    background: #fff;
    border-radius: 5px;

    transition: 0.3s ease;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .gda-menu {
        gap: 15px;
    }

    .gda-menu > a,
    .gda-dropdown-link {
        font-size: 13px;
    }

    .gda-logo-text strong {
        font-size: 16px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .gda-container {
        width: min(100% - 30px, 700px);
    }

    .gda-nav {
        min-height: 70px;
    }

    /* Show Hamburger */

    .gda-toggle {
        display: flex;
    }

    /* Mobile Menu */

    .gda-menu {
        position: absolute;

        top: 70px;
        left: 15px;
        right: 15px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 15px;

        background: #071a2f;

        border-radius: 0 0 12px 12px;

        box-shadow: 0 15px 35px rgba(0,0,0,0.2);

        max-height: 0;
        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease;
    }

    .gda-menu.active {
        max-height: 700px;
        opacity: 1;
        visibility: visible;
    }

    .gda-menu > a,
    .gda-dropdown-link {
        display: block;
        padding: 14px 12px;

        border-bottom: 1px solid rgba(255,255,255,0.08);

        font-size: 15px;
    }

    /* Dropdown */

    .gda-dropdown {
        width: 100%;
    }

    .gda-dropdown-link {
        display: flex;
        justify-content: space-between;
    }

    .gda-dropdown-menu {
        position: static;

        width: 100%;

        transform: none !important;

        box-shadow: none;

        background: rgba(255,255,255,0.05);

        border-radius: 7px;

        opacity: 1;
        visibility: visible;

        display: none;

        margin-bottom: 5px;
    }

    .gda-dropdown:hover .gda-dropdown-menu {
        display: block;
    }

    .gda-dropdown-menu a {
        color: #ffffff !important;
        padding: 11px 15px;
    }

    .gda-dropdown-menu a:hover {
        background: rgba(255,255,255,0.08);
        color: #ff5252 !important;
    }

    /* Admission */

    .gda-admission-btn {
        text-align: center;
        margin-top: 12px;
        padding: 14px !important;
        border-radius: 7px !important;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .gda-container {
        width: calc(100% - 24px);
    }

    .gda-logo-icon {
        width: 42px;
        height: 42px;
        font-size: 12px;
    }

    .gda-logo-text strong {
        font-size: 15px;
    }

    .gda-logo-text span {
        font-size: 11px;
    }

}/* End custom CSS */