 /* Standard CSS Reset */
        * { box-sizing: border-box; }
        body { 
            font-family: 'Roboto', 'Anek Telugu', sans-serif; 
            margin: 0; 
            padding: 0px; 
            background-color: #ffffff; 
            color: #333;
        }

        /* Container to center content */
        .content-container { 
            max-width: 1200px; 
            margin: 0 auto; 
            width: 100%;
			padding: 0px; 
        }

        /* Headings & Text */
        h1.main-heading { 
            font-size: 1.6rem; 
            color: #cc3300; 
            margin: 25px 0 15px 0; 
			font-weight: 500;
            text-align: left; 
            font-family: 'Roboto', sans-serif; 
        }
        h2.sub-title { 
            color:#cc3300;
            font-family: 'Roboto', sans-serif; 
            font-size: 18px; 
            font-weight: 500; 
            margin-top: 25px; 
            margin-bottom: 10px; 
            border-bottom: 2px solid #eee; 
            padding-bottom: 5px; 
        }
        h3.faq-title { 
            color:#cc3300;
            font-family: 'Roboto', sans-serif; 
            font-size: 18px; 
            font-weight: 500; 
            margin-top: 30px; 
            margin-bottom: 15px; 
        }
        p.text-content { 
            font-size: 16px; 
            line-height: 1.7; 
            color: #444; 
            margin-bottom: 15px; 
            font-family: 'Roboto', sans-serif; 
            text-align: left; 
        }

        /* Calendar Container (Mobile Scroll Fix) */
        #calendar-container {
            margin-bottom: 20px;
            min-height: 250px;
            /* Allow horizontal scroll on mobile if content overflows */
            overflow-x: auto; 
            width: 100%;
            display: block; /* Ensure it takes full width */
        }
        /* Optional: Add smooth scrolling for better UX */
        #calendar-container table {
             min-width: 1110px; /* Force minimum width to trigger scroll on small screens */
        }
        
        #p2-container { display: none; }

        /* Loading Spinner */
        #loading-message { 
            text-align: center; 
            padding: 100px 20px; 
            font-size: 18px; 
            color: #666; 
            font-family: 'Anek Telugu', sans-serif; 
        }
        .spinner { 
            border: 4px solid #f3f3f3; 
            border-top: 4px solid #cc3300; 
            border-radius: 50%; 
            width: 40px; 
            height: 40px; 
            animation: spin 1s linear infinite; 
            margin: 0 auto 20px auto; 
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* Accordion Styles */
        .qa-item { margin-bottom: 15px; }
        .question-box { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 15px 20px; 
            border: 2px solid #343a40; 
            border-radius: 8px; 
            cursor: pointer; 
            font-weight: 500; 
            transition: all 0.3s ease; 
            background: #ecf8fc; 
            font-family: 'Anek Telugu', sans-serif; 
        }
        .question-box.active { 
            border-color: #ff8c00; 
            border-bottom-left-radius: 0; 
            border-bottom-right-radius: 0; 
            background-color: #fff8e1; 
        }
        .arrow-icon { 
            width: 0; 
            height: 0; 
            border-left: 6px solid transparent; 
            border-right: 6px solid transparent; 
            border-top: 6px solid #343a40; 
            transition: transform 0.3s; 
            transform: rotate(270deg); 
        }
        .question-box.active .arrow-icon { 
            border-top-color: #ff8c00; 
            transform: rotate(0deg); 
        }
        .answer-content { 
            max-height: 0; 
            overflow: hidden; 
            transition: max-height 0.4s ease-in-out; 
        }
        .answer-text { 
            padding: 1px 20px; 
            margin: 0; 
            background-color: #fff3e0; 
            line-height: 1.6; 
            color: #343a40; 
            border-bottom-left-radius: 8px; 
            border-bottom-right-radius: 8px; 
            font-family: 'Roboto', sans-serif; 
            border: 1px solid #ddd; 
            border-top: none; 
        }

        /* Basic Footer */
        .site-footer { 
            width: 100%; 
            text-align: center; 
            padding: 6px; 
            margin-top: 30px; 
            border-top: 1px solid #ddd; 
            color: #666; 
            font-size: 0.9rem; 
        }
        
        /* Mobile Tweaks */
        @media (max-width: 768px) {
            body { padding: 10px; }
            h1.main-heading { font-size: 1.4rem; }
            /* Force horizontal scroll for calendar on mobile */
            #calendar-container { 
                overflow-x: auto; 
                -webkit-overflow-scrolling: touch; 
            }
        }


        /* =========================================
           1. RESET & BASE STYLES
           ========================================= */
        * { box-sizing: border-box; }
        .container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 10px;
        }
        h2.section-title {
            margin-top: 40px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
            color: #2c3e50;
        }
        h3.subsection-title {
            margin-top: 30px;
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        .component-box {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        /* =========================================
           2. NAVIGATION MENU
           ========================================= */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 8px #999999;
            padding: 0 20px;
            position: static;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 60px;
            flex-wrap: wrap; /* Allows menu to wrap on mobile */
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff8c00;
            text-decoration: none;
            padding: 10px 0;
        }
        
        .nav-links {
            list-style: none;
            display: flex;
            gap: 10px;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links > li > a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 10px 15px;
            display: block;
            transition: color 0.3s;
        }
        .nav-links > li > a:hover {
            color: #ff8c00;
        }

        /* Dropdown Styles (Same for Desktop & Mobile) */
        .dropdown {
            position: relative;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #666666;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-radius: 4px;
            min-width: 200px;
            z-index: 1000;
            padding: 10px 0;
            border: 0px solid #eee;
        }
        
        /* Show dropdown on hover for desktop */
        @media (min-width: 769px) {
            .dropdown:hover .dropdown-menu {
                display: block;
            }
        }
        
        /* Show dropdown when active class is added (for click toggle) */
        .dropdown.active .dropdown-menu {
            display: block;
        }

        .dropdown-menu a {
            padding: 8px 20px;
			background-color: #ffc750;
            color: #555;
            display: block;
            width: 100%;
            text-decoration: none;
			border-radius: 4px;
			font-weight:600;
        }
        .dropdown-menu a:hover {
            background-color:#FF6600;
            color:#ffffff;
			font-weight:600;
        }

        /* Calendar Dropdown Specifics */
        .calendar-dropdown {
            min-width: 320px;
            padding: 15px;
        }
        .cal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5px;
            text-align: center;
        }
        .cal-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: bold;
            color: #ff8c00;
        }
        .cal-day-name {
            font-size: 0.8rem;
            color: #888;
            font-weight: 600;
        }
        .cal-date {
            padding: 4px;
            font-size: 0.9rem;
            border-radius: 6px;
            cursor: pointer;
			background-color: #ff8c00;
        }
        .cal-date:hover {
            background-color: #ff8c00;
            color: #fff;
        }
        .cal-date.today {
            background-color:#FFECB0;
            color: #ff8c00;
        }

        /* Mobile Menu Toggle (Hamburger) */
        .menu-toggle {
            display: none;
            width: 30px;
            height: 24px;
            position: relative;
            cursor: pointer;
            padding: 0;
			margin-right:10px;
        }
        
        .menu-toggle span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #333;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .menu-toggle span:nth-child(1) { top: 0px; }
        .menu-toggle span:nth-child(2) { top: 10px; }
        .menu-toggle span:nth-child(3) { top: 20px; }

        /* Transform to X when open */
        .menu-toggle.open span:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }
        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        .menu-toggle.open span:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }

        /* MOBILE STYLES */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
			.navbar {
            background-color: #ffffff;
            padding: 0;
            position: static;
			margin-left:-5px;
			margin-right:-5px;
            top: 0;
            z-index: 100;
			-webkit-box-shadow: 0 8px 0px -6px #ddd;
     		-moz-box-shadow: 0 8px 0px -6px #ddd;
          	box-shadow: 0 8px 0px -6px #ddd;
        }
        .nav-container {
            margin: 0 auto;
			margin-top:-10px;
			margin-right:5px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 60px;
            flex-wrap: wrap; /* Allows menu to wrap on mobile */
        }
            .nav-links {
                display: none; /* Hidden by default */
                flex-direction: column;
                width: 100%; /* Full width to push content */
                background-color: #fff;
                border-top: 1px solid #ddd;
                padding: 5px 0;
                gap: 0;
                order: 3; /* Ensure it comes after logo and toggle */
            }
            .nav-links.active {
                display: flex; /* Show when active */
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links > li > a {
                padding: 15px 10px;
                width: 100%;
                border-bottom: 1px solid #ddd;
            }
            
            /* Mobile Dropdown - Keeping Desktop Look but adapted */
            .dropdown-menu {
                position: static; /* Stack naturally in list */
                width: 100%; /* Slight indent */
                margin: 0 auto;
                box-shadow: none; /* Remove shadow to look flat */
                background-color: #666666;
                padding: 0;
            }
            /* Override calendar specific width on mobile */
            .calendar-dropdown {
                min-width: auto;
                width: 100%;
				padding:20px;
            }
        }

        /* =========================================
           3. BUTTONS
           ========================================= */
        .btn {
            display: inline-block;
            padding: 10px 20px;
            font-size: 1rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s, box-shadow 0.3s;
            text-decoration: none;
            margin-right: 10px;
            margin-bottom: 10px;
            font-family: inherit;
            line-height: 1.5;
        }
        .btn:active { transform: scale(0.98); }
        .btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(0,0,0,0.1); }
        
        /* Sizes */
        .btn-sm { padding: 5px 10px; font-size: 0.875rem; }
        .btn-lg { padding: 15px 30px; font-size: 1.25rem; }
        .btn-rounded { border-radius: 50px; }

        /* Colors */
        .btn-primary { background-color: #E97451; color: #fff; text-align:center; font-size:16px; }
        .btn-primary:hover { background-color: #ff8c00; }
		.btn-primary-top { background-color: #E97451; color: #fff; text-align:center; font-size:16px; }
        .btn-primary-top:hover { background-color:#3366CC; }
        .btn-secondary { background-color: #6c757d; }
        .btn-secondary:hover { background-color: #5a6268; }
        .btn-success { background-color: #28a745; color: #fff; }
        .btn-info { background-color: #17a2b8; color: #fff; }
        .btn-warning { background-color: #ffc107; color: #212529; }
        .btn-danger { background-color: #dc3545; color: #fff; }
        .btn-dark { background-color: #343a40; color: #fff; }
        .btn-light { background-color: #f8f9fa; color: #212529; border: 1px solid #ddd;}
        .btn-outline { background-color: transparent; border: 2px solid #ff8c00; color: #ff8c00; }
        .btn-outline:hover { background-color: #ff8c00; color: #fff; }

        /* =========================================
           4. TABS
           ========================================= */
        
        /* 4a. Horizontal Tabs (Default Underline) */
        .tabs-wrapper {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        .tab-header {
            display: flex;
            border-bottom: 2px solid #eee;
            margin-bottom: 20px;
            overflow-x: auto;
        }
        .tab-btn {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 600;
            color: #666;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .tab-btn:hover { color: #ff8c00; }
        .tab-btn.active { color: #ff8c00; border-bottom-color: #ff8c00; }
        
        /* 4b. Outline Tabs (Light Orange Active) */
        .outline-tabs-wrapper {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        .outline-tab-header {
            display: flex;
            gap: 5px;
            border-bottom: 1px solid #ffe0b2;
            padding-bottom: 1px;
            margin-bottom: 0;
            overflow-x: auto;
        }
        .outline-tab-btn {
            padding: 10px 25px;
            cursor: pointer;
            font-weight: 600;
            color: #555;
            border: 1px solid #ddd;
            border-bottom: none;
            border-radius: 5px 5px 0 0;
            background: #fff;
            transition: all 0.2s;
            margin-bottom: -1px;
            white-space: nowrap;
        }
        .outline-tab-btn:hover {
            background-color: #fff3e0;
            color: #e65100;
        }
        .outline-tab-btn.active {
            background-color: #ffe0b2;
            color: #e65100;
            border-color: #ffe0b2;
            border-bottom-color: #ffe0b2;
        }
        .outline-tab-content {
            display: none;
            padding: 20px;
            background-color: #ffe0b2;
            border-radius: 0 0 8px 8px;
            color: #333;
            animation: fadeIn 0.4s;
        }
        .outline-tab-content.active { display: block; }

        /* 4c. Vertical Tabs */
        .vertical-tabs-wrapper {
            display: flex;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            overflow: hidden;
            min-height: 200px;
        }
        .v-tab-header {
            display: flex;
            flex-direction: column;
            width: 25%;
            background-color: #f8f9fa;

            border-right: 1px solid #eee;
        }
        .v-tab-btn {
            padding: 15px 20px;
            cursor: pointer;
            text-align: left;
            font-weight: 600;
            color: #555;
            transition: background 0.2s;
            border-left: 4px solid transparent;
        }
        .v-tab-btn:hover { background-color: #e9ecef; }
        .v-tab-btn.active {
            background-color: #fff;
            color: #ff8c00;
            border-left-color: #ff8c00;
            box-shadow: -2px 0 5px rgba(0,0,0,0.05);
        }
        .v-tab-body {
            width: 75%;
            padding: 20px;
        }

        /* Tab Content Animation */
        .tab-content {
            display: none;
            animation: fadeIn 0.4s;
        }
        .tab-content.active { display: block; }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* =========================================
           5. HORIZONTAL LIST MENU (Square Buttons + Pipes)
           ========================================= */
        .horizontal-menu {
            display: flex;
            gap: 0; /* No gap for strip effect */
            overflow-x: auto;
            padding: 0;
            margin-bottom: 20px;
            background-color: #fff; /* Full strip background */
            border: 1px solid #ddd;
            border-radius: 4px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .horizontal-menu::-webkit-scrollbar {
            display: none;
        }
        .h-menu-item {
            flex-shrink: 0;
            padding: 15px 25px; /* Square-ish look */
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all 0.2s;
            border-right: 1px solid #eee; /* Pipe separator */
            display: inline-block;
        }
        .h-menu-item:last-child {
            border-right: none;
        }
        .h-menu-item:hover, .h-menu-item.active {
            background-color: #fff3e0;
            color: #ff8c00;
        }

        /* =========================================
           6. ACCORDION (Pure CSS & JS Option)
           ========================================= */
        .accordion-wrapper {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
        }
        .acc-item { border-bottom: 1px solid #eee; }
        .acc-item:last-child { border-bottom: none; }
        
        .acc-header {
            background: #fff;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }
        .acc-header:hover { background: #f9f9f9; }
        .acc-header.active { background: #fff8e1; color: #ff8c00; }
        
        .acc-icon { transition: transform 0.3s; }
        .acc-header.active .acc-icon { transform: rotate(180deg); }

        .acc-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fafafa;
            padding: 0 20px;
        }
        .acc-body p { margin: 15px 0; color: #555; }
		
		
		/* =========================================
           5. HORIZONTAL LIST MENU (Square Buttons + Pipes)
           ========================================= */
        .horizontal-menu {
            display: flex;
            gap: 0; /* No gap for strip effect */
            overflow-x: auto;
            padding: 0;
            margin-bottom: 20px;
            background-color: #EBFAFF; /* Full strip background */
            border: 1px solid #ddd;
            border-radius: 4px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
		.horizontal-menu-rasi {
            display: flex;
            gap: 0; /* No gap for strip effect */
            overflow-x: auto;
            padding: 0;
            margin-bottom: 20px;
            /* background-color:#E6FDFF; Full strip background */
            border: 1px solid #ddd;
            border-radius: 4px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
		.horizontal-menu-rasi1 {
            display: flex;
            gap: 0; /* No gap for strip effect */
            overflow-x: auto;
            padding: 0;
            margin-bottom: 20px;
            background-color:#BDFBFF; /* Full strip background */
            border: 1px solid #ddd;
            border-radius: 4px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .horizontal-menu::-webkit-scrollbar {
            display: none;
        }
		.horizontal-menu-rasi::-webkit-scrollbar {
            display: none;
        }
        .h-menu-item {
            flex-shrink: 0;
            padding: 12px 22px; /* Square-ish look */
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all 0.2s;
            border-right: 1px solid #03C0FF; /* Pipe separator */
            display: inline-block;
        }
        .h-menu-item:last-child {
            border-right: none;
        }
        .h-menu-item:hover, .h-menu-item.active {
            background-color: #fff3e0;
            color:#CC0000;
        }
		
		
		.h-menu-item-rasi {
            flex-shrink: 0;
            padding: 12px 18px; /* Square-ish look */
            text-decoration: none;
			background-color:#E6FDFF;
            color: #555;
            font-weight: 500;
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all 0.2s;
            border-right: 1px solid #03C0FF; /* Pipe separator */
            display: inline-block;
        }
        .h-menu-item-rasi:last-child {
            border-right: none;
        }
        .h-menu-item-rasi:hover, .h-menu-item.active {
            background-color:#FFCC66;
            color:#CC0000;
        }
		.h-menu-item-rasi1 {
            flex-shrink: 0;
            padding: 12px 18px; /* Square-ish look */
            text-decoration: none;
			background-color:#ABF0F5;
            color: #555;
            font-weight: 500;
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all 0.2s;
            border-right: 1px solid #03C0FF; /* Pipe separator */
            display: inline-block;
        }
        .h-menu-item-rasi1:last-child {
            border-right: none;
        }
        .h-menu-item-rasi1:hover, .h-menu-item.active {
            background-color:#FFCC66;
            color:#CC0000;
        }
		
		/* =========================================
           3. BUTTONS
           ========================================= */
        .btn {
            display: inline-block;
            padding: 6px 10px;
            font-size: 1rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s, box-shadow 0.3s;
            text-decoration: none;
            margin-right: 1px;
            margin-bottom: 6px;
            font-family: inherit;
            line-height: 1.4;
        }
        .btn:active { transform: scale(0.98); }
        .btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(0,0,0,0.1); }
        
        /* Sizes */
        .btn-sm { padding: 6px 10px; font-size: 0.875rem; color:#FFFFFF; }
        .btn-lg { padding: 10px 20px; font-size: 1.25rem; }
        .btn-rounded { border-radius: 50px; }

        /* Colors */
        .btn-primary { background-color: #1E90FF; color: #fff; }
		.btn-primary-venkatrama { background-color: #64646D; color: #fff; }
        .btn-primary:hover { background-color: #e07b00; }
        .btn-secondary { background-color: #6c757d; color: #fff; }
        .btn-secondary:hover { background-color: #5a6268; }
        .btn-success { background-color: #28a745; color: #fff; }
        .btn-info { background-color: #17a2b8; color: #fff; }
        .btn-warning { background-color: #ffc107; border: 2px solid #ff8c00; }
		.btn-warning:hover { background-color: #1E90FF; color:#ffffff; border: 2px solid #ff8c00; }
        .btn-danger { background-color: #dc3545; color: #fff; }
        .btn-dark { background-color: #343a40; color: #fff; }
        .btn-light { background-color: #f8f9fa; color: #212529; border: 1px solid #ddd;}
        .btn-outline { background-color: transparent; border: 2px solid #ff8c00; color: #ff8c00; }
        .btn-outline:hover { background-color: #ff8c00; color: #fff; }
		

/* Read More Button Start - Custom Color #03C0FF */
    .read-more-btn {
        display:inline;
        margin: 6px 0; /* Left Aligned (Starting nundi) */
        background-color: #03C0FF;
        color: white;
        border: none;
        padding: 5px 10px; /* Small Padding */
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .read-more-btn:hover {
        background-color: #029ACD;
        transform: translateY(-1px);
    }

    /* Animation Container */
    .expandable-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.8s ease-in-out, opacity 0.5s ease-in-out;
        opacity: 0;
		line-height:28px;
		color:#333333;
		font-size: 16px;
    }

    .expandable-content.open {
        max-height: 2000px; /* Large enough to fit content */
        opacity: 1;
    }
    
    /* Section Headings */
    .seo-section-title {
        color: #333;
        margin-top: 20px;
        margin-bottom: 10px;
        border-bottom: 2px solid #03C0FF;
        display:block;
        padding-bottom: 8px;
		font-size: 23px;
    }
	/* Read More Button end - Custom Color #03C0FF */