

   /* HOVER GAP FIX */
.mega-menu {
    position: relative;
}

.mega-menu::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 25px;   /* gap cover */
}
  /* RESET */
.mega-menu {
    position: static !important;
}

/* BOX FULL WIDTH */
.mega-menu-box {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    display: none;
    z-index: 9999;
}

/* INNER CENTER */
.mega-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* LEFT PANEL */
.mega-left {
    width: 30%;
    background: linear-gradient(135deg, #010d32, #1e3a8a);
    color: #fff;
    padding: 40px;
}

/* RIGHT */
.mega-right {
    width: 70%;
    display: flex;
    justify-content: space-between;
    padding: 35px;
}

/* COLUMN */
.mega-col { width: 23%; }

.mega-col a {
    display: block;
    padding: 6px 0;
    color: #555;
    transition: 0.3s;
}

.mega-col a:hover {
    color: #010d32;
    transform: translateX(5px);
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
    .mega-menu:hover .mega-menu-box {
        display: block;
    }
}

/* MOBILE */
@media (max-width: 991px) {

    .mega-menu-box {
        position: static;
        width: 100%;
        display: none;
    }

    .mega-menu.active .mega-menu-box {
        display: block;
    }

    .mega-inner {
        flex-direction: column;
    }

    .mega-left, .mega-right {
        width: 100%;
    }

    .mega-right {
        flex-direction: column;
    }

    .mega-col {
        width: 100%;
        margin-bottom: 15px;
    }
}

/* HEADER FIX */
.at-header-area .container {
    position: static !important;
}

h5{
   font-size: 20px!important;
}
.para{
color: #fff!important;
}


.mega-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #F6B800, #F6B800);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 65%;
}

/* HOVER EFFECT */
.mega-btn:hover {
    background: linear-gradient(135deg, #010d32, #1e3a8a);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* SHINE EFFECT */
.mega-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.mega-btn:hover::before {
    left: 100%;
}

/* CLICK EFFECT */
.mega-btn:active {
    transform: scale(0.95);
}
