﻿*{margin:0;padding:0;box-sizing:border-box;}

/* Body Styles */
body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height:1.6;
    color:#333;
    background:#fff;
    overflow-x:hidden;
    padding-top: 90px;
}

/* Responsive padding */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

.AO_MP_container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;
}

/* ===== MAIN NAVIGATION & MEGA MENU ===== */

/* Main Header Styling */
.AO_MP_main-header {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Header on Scroll - Visual Effect */
.AO_MP_main-header.scrolled {
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
}

/* Navbar Container */
.AO_MP_navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo Styling */
.AO_MP_logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.AO_MP_logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}
.AO_MP_logo-img:hover {
    transform: scale(1.05);
}

/* Main Navigation Menu */
.AO_MP_nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.AO_MP_nav-item {
    position: relative;
    margin-left: 30px;
}
.AO_MP_nav-link {
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
.AO_MP_nav-link:hover {
    color: #ff9800;
    transform: translateY(-3px);
    text-shadow: 0 4px 15px rgba(255, 152, 0, 0.5);
}
.AO_MP_nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ff9800;
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}

.AO_MP_nav-link:hover::after {
    width: 85%;
}
.AO_MP_nav-link i {
    margin-left: 5px;
    font-size: 14px;
    transition: transform 0.3s ease;
}
.AO_MP_nav-item:hover .AO_MP_nav-link i {
    transform: rotate(180deg);
}


/* ===== MEGA MENU DESKTOP ===== */
.AO_MP_mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    top: 100%;
    width: 1000px;
    max-width: 100vw;
    margin: 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    border-top: 3px solid #ff9800;
    box-sizing: border-box;
    overflow: hidden;
}

/* Hover par show */
.AO_MP_nav-item:hover .AO_MP_mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-67%) translateY(0);
}

/* Mega menu content */
.AO_MP_mega-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mega menu column styling */
.AO_MP_mega-col {
    min-width: 0;
}

.AO_MP_mega-col h4 {
    color: #ff9800;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 152, 0, 0.3);
    font-weight: 600;
    white-space: nowrap;
}

.AO_MP_mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.AO_MP_mega-col li {
    margin-bottom: 10px;
}

.AO_MP_mega-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 6px 0;
    padding-left: 12px;
    border-left: 2px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.AO_MP_mega-col a:hover {
    color: #ff9800;
    border-left-color: #ff9800;
    padding-left: 15px;
    background: rgba(255, 152, 0, 0.08);
}

/* Mobile Menu Toggle Button */
.AO_MP_menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* ===== RESPONSIVE DESIGN ===== */

/* For Tablets */
@media (max-width: 1200px) {
    .AO_MP_mega-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .AO_MP_mega-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ===== MOBILE VIEW FIX (768px se chhota) ===== */
@media (max-width: 768px) {
    /* Mobile menu toggle button */
    .AO_MP_menu-toggle {
        display: block;
    }
    
    /* Logo size adjust */
    .AO_MP_logo-img {
        height: 40px;
    }
    
    /* Main navigation menu - HIDDEN by default */
    .AO_MP_nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 100%);
        flex-direction: column;
        padding: 70px 20px 30px 20px;
        transition: left 0.4s ease;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 999;
        margin: 0;
    }
    
    /* Menu open state */
    .AO_MP_nav-menu.active {
        left: 0;
    }
    
    /* Nav items in mobile */
    .AO_MP_nav-item {
        margin: 0 0 12px 0;
        width: 100%;
    }
    
    /* Nav links in mobile */
    .AO_MP_nav-link {
        color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    }
    
    /* Remove desktop hover effects in mobile */
    .AO_MP_nav-item:hover .AO_MP_nav-link i {
       color: #ff9800;
    text-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
    }
    .AO_MP_nav-link:hover::after {
    width: 100%;
    left: 0;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.4);   /* glow underline ke saath */
}
    /* ===== MEGA MENU MOBILE FIX ===== */
    .AO_MP_mega-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: none !important;
        display: none;
        padding: 15px !important;
        margin: 10px 0 15px 0;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 6px;
        border: 1px solid rgba(255, 152, 0, 0.2);
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
        opacity: 1;
        visibility: visible;
    }
    
    /* Show mega menu when active */
    .AO_MP_nav-item.active .AO_MP_mega-menu {
        display: block;
    }
    
    /* Mega menu content - SINGLE COLUMN in mobile */
    .AO_MP_mega-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    /* Mega menu columns */
    .AO_MP_mega-col {
        width: 100% !important;
    }
    
    .AO_MP_mega-col h4 {
        font-size: 15px;
        margin-bottom: 10px;
        white-space: normal;
    }
    
    .AO_MP_mega-col li {
        margin-bottom: 8px;
    }
    
    .AO_MP_mega-col a {
        font-size: 14px;
        padding: 8px 0 8px 12px;
        white-space: normal;
        word-break: break-word;
        overflow: visible;
        text-overflow: unset;
    }
    
    /* Header scroll effect for mobile */
    .AO_MP_main-header.scrolled {
        padding: 8px 0;
    }
}

/* Small mobile phones (480px se chhota) */
@media (max-width: 480px) {
    .AO_MP_nav-menu {
        width: 85%;
        padding: 70px 15px 25px 15px;
    }
    
    .AO_MP_logo-img {
        height: 35px;
    }
    
    .AO_MP_nav-link {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .AO_MP_mega-menu {
        padding: 12px !important;
    }
    
    .AO_MP_mega-col a {
        font-size: 13px;
    }
}

/* ===== SCROLL FADE EFFECT ===== */
.AO_MP_section-fade{
    opacity:0;
    transform:translateY(50px);
    transition:all 0.8s ease;
}

.AO_MP_section-fade.visible{
    opacity:1;
    transform:translateY(0);
}

/* ===== FOOTER STYLES ===== */
.AO_MP_footer-top-line{
    height:5px;
    background:#ff9800;
    width:100%;
}

.AO_MP_footer{
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 100%);
    color:#fff;
    padding:0 0 20px 0;
    position:relative;
    overflow:hidden;
    z-index:1;
}

/* White Glow */
.AO_MP_footer::before{
    content:'';
    position:absolute;
    top:0;
    left:-60%;
    width:220%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.05) 15%,
        transparent 30%
    );
    animation:AO_MP_footerShine 9s linear infinite;
    pointer-events:none;
}

/* Golden Glow */
.AO_MP_footer::after{
    content:'';
    position:absolute;
    bottom:0;
    right:-60%;
    width:220%;
    height:100%;
    background:linear-gradient(
        300deg,
        transparent 0%,
        rgba(255,152,0,0.12) 30%,
        transparent 60%
    );
    animation:AO_MP_footerGold 12s linear infinite;
    pointer-events:none;
}

@keyframes AO_MP_footerShine{
    0%{ left:-60%; }
    100%{ left:100%; }
}

@keyframes AO_MP_footerGold{
    0%{ right:-60%; }
    100%{ right:100%; }
}

.AO_MP_footer-top{
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 100%);
    padding:50px 0 30px 0;
    border-top:1px solid #1f1f1f;
}

.AO_MP_footer-widgets{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    margin-bottom:40px;
}

.AO_MP_footer-widget h3{
    color:#fff;
    font-size:20px;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:2px solid #ff9800;
    position:relative;
}

.AO_MP_footer-widget h3::after{
    content:'';
    position:absolute;
    bottom:-2px;
    left:0;
    width:50px;
    height:2px;
    background:#fff;
}

.AO_MP_footer-links{list-style:none;}

.AO_MP_footer-links li{
    margin-bottom:12px;
    border-bottom:1px dashed #333;
    padding-bottom:12px;
}

.AO_MP_footer-links a{
    color:#aaa;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    display:flex;
    align-items:center;
    transition:0.3s;
}

.AO_MP_footer-links a:hover{
    color:#ff9800;
    padding-left:10px;
}

.AO_MP_footer-links a i{
    margin-right:10px;
    color:#ff9800;
    width:20px;
    font-size:12px;
}

.AO_MP_contact-info p{
    color:#aaa;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
    display:flex;
    padding-bottom:15px;
    border-bottom:1px dashed #333;
}

.AO_MP_contact-info i{
    color:#ff9800;
    margin-right:15px;
    margin-top:3px;
}

.AO_MP_footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.AO_MP_social-icon{
    width:40px;
    height:40px;
    background:#333;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
    border:1px solid #444;
}

.AO_MP_social-icon:hover{
    background:#ff9800;
    transform:translateY(-5px);
}

.AO_MP_footer-bottom{
    background: linear-gradient(135deg, #0a1624 0%, #152131 100%);
    padding:20px 0;
    text-align:center;
    color:#999;
    font-size:14px;
    border-top:1px solid #1f1f1f;
}

.AO_MP_footer-bottom a{
    color:#ff9800;
    text-decoration:none;
}

.AO_MP_footer-bottom a:hover{
    color:#fff;
    text-decoration:underline;
}

/* FOOTER RESPONSIVE */
@media(max-width:992px){
    .AO_MP_footer-widgets{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .AO_MP_footer-widgets{
        grid-template-columns:1fr;
    }
}

/* Mobile body fix */
@media (max-width: 768px) {
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}