﻿/* =========================================
           BASE STYLES (User Original)
           ========================================= */
        * {
            box-sizing: border-box; /* Prevents elements from screening out */
        }
        body {
            font-family: 'Roboto', Tahoma, Geneva, Verdana, sans-serif;
            background-color:#FBFBFB;
            margin: 0;
            padding: 0; 
            color: #333;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
            padding-bottom: 30px;
        }
        p { color: #666; margin-bottom: 10px; }

        /* =========================================
           MAIN NAVBAR (User Original Logic)
           ========================================= */
        .main-navbar {
            background: #fff;
            box-shadow: 0 6px 10px rgba(0,0,0,0.3);
            position: relative; 
            z-index: 1000;
            width: 100%;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            min-height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap; 
        }
        .nav-logo {
            display: flex;
            align-items: center;
            padding: 10px 0;
            text-decoration: none;
        }
        .nav-logo img {
            height: 45px;
            width: auto;
            display: block;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            /* gap: 20px; Removed as per request */
            align-items: center;
        }
        .nav-item {
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 10px; /* Added padding to compensate for gap removal */
        }
        .nav-link {
            text-decoration: none;
            color: #444;
            font-weight: 500;
            padding: 10px 0;
            transition: color 0.2s;
            cursor: pointer;
            white-space: nowrap;
            user-select: none;
        }
        .nav-link:hover, .nav-link.active { color: #ff8c00; }
        .nav-link.has-arrow::after {
            content: ' \25BE';
            font-size: 0.8rem;
            margin-left: 5px;
        }

        /* --- PUSH DOWN PANELS (Orange Theme) --- */
        .push-down-panel {
            display: none; 
            width: 100%;
            background-color: #ff8c00; 
            border-top: 1px solid rgba(255,255,255,0.1);
            box-shadow: inset 0 10px 20px -10px rgba(0,0,0,0.4);
            overflow: hidden;
            transition: all 0.3s;
        }
        .push-down-panel.active {
            display: block; 
        }

        /* MegaMenu Header Title */
        .mega-panel-title {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px 0 20px;
            color: #fff;
            font-size: 1.2rem;
            font-weight: bold;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 10px;
        }

        /* MegaMenu Content (Equal Width Columns) */
        .mega-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px 10px 20px;
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* Equal 5 columns */
            gap: 0px;
        }
		
		/* MegaMenu Content (Equal Width Columns) */
        .mega-content4c {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px 10px 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* Equal 5 columns */
            gap: 0px;
        }
        
        .mega-col a {
            display: block;
            color: rgba(255,255,255,0.95);
            text-decoration: none;
            padding: 5px 10px 15px;
            font-size: 0.95rem;
            transition: 0.2s;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Added Arrow Before Links */
        .mega-col a::before {
            content: '\203A'; /* Arrow symbol � */
            margin-right: 8px;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .mega-col a:hover { 
			color: #fff;
			padding-left: 15px;
			font-weight: 600;
			background-color: rgb(255 255 255 / 20%);
			border-radius: 6px;
        }

        /* HAMBURGER (User Original) */
        .hamburger {
            display: none;
            width: 30px;
            height: 20px;
            position: relative;
            cursor: pointer;
            z-index: 1001; 
        }
        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 3px;
            transition: .25s ease-in-out;
        }
        .hamburger span:nth-child(1) { top: 0px; }
        .hamburger span:nth-child(2) { top: 9px; }
        .hamburger span:nth-child(3) { top: 18px; }

        .hamburger.active span:nth-child(1) { top: 9px; transform: rotate(135deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-135deg); }

        /* MOBILE RESPONSIVE (User Original Logic) */
        @media (max-width: 992px) {
            .hamburger { display: block; }
            .nav-menu {
                display: none; 
                width: 100%;
                flex-direction: column;
                background: #fff;
                border-top: 1px solid #eee;
                margin-top: 10px;
                padding-bottom: 10px; /* Added space at the end of mobile menu */
            }
            .nav-menu.active { display: flex; }
            .nav-item { 
                width: 100%; 
                border-bottom: 1px solid #f5f5f5; 
                display: block; 
                padding: 0; /* Removing side padding on mobile items to fit better */
            }
            .nav-link { display: block; padding: 15px; width: 100%; }
            
            /* Add 20px space below last button in mobile */
            .nav-item:last-child {
                border-bottom: none;
                margin-top: 15px;
                margin-bottom: 20px;
                padding: 0 15px; /* Side padding only for the button container */
            }
            .nav-item:last-child .btn-primary-top {
                display: block;
                width: 100%;
                margin: 0 auto;
            }

            .push-down-panel {
                position: static;
                background: #e67e00; 
                box-shadow: none;
            }
            .mega-content {
                grid-template-columns: 1fr; /* Stacked on mobile */
                padding: 10px 20px;
            }
			.mega-content4c {
                grid-template-columns: 1fr; /* Stacked on mobile */
                padding: 10px 20px;
            }
            .mega-panel-title { font-size: 1rem; padding: 15px 20px; }
        }

        /* Updated Rasi Phalalu Button & Hover Effect */
        .btn-primary-top { 
            background-color: #E97451; 
            color: #fff; 
            text-align:center; 
            padding: 8px 15px; 
            border-radius: 4px; 
            text-decoration: none; 
            font-size: 14px; 
            font-weight: 600;
            border: 2px solid transparent; /* Prevents jumping on hover */
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .btn-primary-top:hover { 
            background-color: #ffffff; 
            border: 2px solid #ff8c00; 
            color: #ff8c00; 
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
		
		
<!-- SCroll Cities-->
        .m1loc-header {
            text-align: center;
            margin-bottom: -20px; 
            width: 100%;
        }

        .m1loc-title {
            color: #333333;
            margin-bottom: -15px;
			font-size: 1.35rem;
			font-weight:700;
			letter-spacing: -0.9px;
			line-height: 1.2em;
        }

        .m1loc-subtitle {
            font-size: 15px;
            color: #888;
        }

        /* Slider Section */
        .m1loc-slider-container {
            position: relative;
            width: 100%;
            max-width: 1200px; 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 10px;
        }

        .m1loc-scroll-wrapper {
            overflow-x: auto;
            display: flex;
            gap: 25px; 
            padding: 30px 10px; 
            -ms-overflow-style: none;
            scrollbar-width: none;
            cursor: grab;
            user-select: none;
            flex-grow: 1;
            align-items: center;
        }

        .m1loc-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }

        /* Card Styles */
        .m1loc-card {
            flex: 0 0 116px; 
            height: 124px; 
            background: #fff;
            border: 2px solid #f0f0f0; 
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                        background-color 0.3s ease, 
                        box-shadow 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            cursor: pointer;
            position: relative;
            z-index: 1;
        }

        /* Center Active State */
        .m1loc-card.m1loc-active {
            background-color: #ff9800;
            border-color: #ff9800;
            transform: scale(1.15);
            box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
            z-index: 2;
        }

        .m1loc-card.m1loc-active .m1loc-city-name {
            color: #ffffff;
        }

        /* Hover State */
        .m1loc-card:hover {
            background-color: #ff9800;
            border-color: #ff9800;
            transform: scale(1.2) !important; 
            box-shadow: 0 12px 25px rgba(255, 152, 0, 0.4);
            z-index: 10 !important;
        }

        .m1loc-card:hover .m1loc-city-name {
            color: #ffffff;
        }

        /* Selected State (Blue) */
        .m1loc-card.m1loc-selected {
            background-color: #007bff !important;
            border-color: #007bff !important;
        }
        .m1loc-card.m1loc-selected .m1loc-city-name {
            color: #ffffff !important;
        }

        .m1loc-icon-box {
            width: 45px; 
            height: 45px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .m1loc-icon-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 4px;
        }

        .m1loc-city-name {
            font-size: 13px; 
            font-weight: 500; /* Bold (700) nundi Medium (500) ki marchanu */
            color: #731b1b;
            text-align: center;
            padding: 0 4px;
            transition: color 0.3s ease;
        }

        /* Arrows */
        .m1loc-arrow {
            width: 35px;
            height: 124px; 
            background: rgba(255, 255, 255, 0.95);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-radius: 6px;
            flex-shrink: 0;
            outline: none;
        }

        .m1loc-arrow:hover {
            background: #ff9800;
        }

        .m1loc-arrow:hover svg {
            stroke: #fff;
        }

        .m1loc-arrow svg {
            width: 22px;
            height: 22px;
            stroke: #731b1b;
            stroke-width: 3.5;
            fill: none;
            transition: stroke 0.3s ease;
        }

        @media (max-width: 768px) {
            .m1loc-arrow { display: none; }
            .m1loc-slider-container { padding: 0; }
            .m1loc-card { flex: 0 0 110px; height: 120px; }
        }