html, body {







    overflow-x: hidden;







    width: 100%;







}















/* Main CSS stylesheet for Tapashilu Scheme content page */















:root {







    --primary-gold: #DEA445;







    --primary-dark-gold: #9A6044;







    --primary-light-gold: #F7E2C1;







    --header-bg: #F7E2C1;







    --navbar-bg: #9A6044;







    --body-bg: #fffbf5;







    --card-bg: #ffffff;







    --sidebar-bg: #F7E2C1;







    --text-primary: #1e293b;







    --text-secondary: #475569;







    --text-dark-gold: #9A6044;







    --color-green: #047857;







    --color-green-hover: #065f46;







    --color-blue: #9A6044;







    --color-blue-hover: #804a30;







    --color-light-blue: #f5eae0;







    --color-border: #e2e8f0;







    







    --radius-sm: 4px;







    --radius-md: 8px;







    --radius-lg: 12px;







    







    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);







    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);







    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);







    







    --font-kannada: 'Noto Sans Kannada', 'Inter', sans-serif;







}















* {







    margin: 0;







    padding: 0;







    box-sizing: border-box;







}















body {







    font-family: var(--font-kannada);







    background-color: var(--body-bg);







    color: var(--text-primary);







    line-height: 1.6;







    padding-bottom: 2rem;







}















/* Header styling */








/* ==========================================================================
   Header section redesign
   ========================================================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem 2.5rem;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #9A6044;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.header-logo {
    width: 135%;
    height: 135%;
    max-width: none;
    object-fit: contain;
    transform: translateY(16%);
}

.header-title-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-kannada);
    font-size: 1.7rem;
    font-weight: 700;
    color: #9A6044;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: #DEA445;
    font-weight: 600;
    margin-top: 0.15rem;
    letter-spacing: 0.3px;
}

.header-search-container {
    flex-grow: 1;
    max-width: 450px;
    margin: 0 2rem;
}

.search-box {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.7rem 3rem 0.7rem 1.4rem;
    border: 1px solid #cbd5e1;
    border-radius: 24px;
    font-size: 0.95rem;
    font-family: var(--font-kannada);
    outline: none;
    background-color: #F7E2C1;
    transition: all 0.3s ease;
    color: #1e293b;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.03);
}

.search-input:focus {
    border-color: #9A6044;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(96, 56, 19, 0.1);
}

.search-btn {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #9A6044;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: scale(1.15);
}

.main-header .language-selector {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #F7E2C1;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #eddcd0;
    color: #9A6044;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.02);
}

.main-header .language-selector i {
    font-size: 1rem;
    color: #DEA445;
}

.main-header .language-selector select {
    border: none;
    background: none;
    font-weight: 700;
    color: #9A6044;
    font-size: 0.95rem;
    font-family: var(--font-kannada);
    outline: none;
    cursor: pointer;
}

/* ==========================================================================
   Navbar section redesign
   ========================================================================== */
.navbar {
    background-color: #9A6044;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.nav-links {
    display: flex;
    list-style: none;
    height: 100%;
    align-items: center;
}

.nav-item {
    margin-right: 0.75rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.1rem;
    border-radius: 6px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-item a i {
    font-size: 1.05rem;
}

.nav-item.active a, .nav-item a:hover {
    background-color: #DEA445;
    color: #ffffff !important;
}

.nav-links .nav-item[data-tab="home"] a {
    background-color: #804a30;
    border: 1px solid #DEA445;
}

.nav-links .nav-item[data-tab="home"].active a {
    background-color: #6b3c25;
}

/* Downloads Dropdown in Navbar */
.nav-downloads-dropdown {
    position: relative;
    display: inline-block;
}

.downloads-btn {
    background-color: #804a30;
    color: #ffffff;
    border: 1px solid #DEA445;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    font-family: var(--font-kannada);
}

.downloads-btn:hover {
    background-color: #6b3c25;
    border-color: #a17850;
}

.downloads-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
    z-index: 1001;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-top: 8px;
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.downloads-dropdown-content.show {
    display: block;
}

.downloads-dropdown-content a {
    color: #9A6044;
    padding: 12px 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.downloads-dropdown-content a:last-child {
    border-bottom: none;
}

.downloads-dropdown-content a:hover {
    background-color: #F7E2C1;
    color: #DEA445;
}

/* ==========================================================================
   Full Width Page Layout
   ========================================================================== */
.main-content-wrapper {
    max-width: 1240px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    width: 100%;
    min-height: 600px;
}

.content-area {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    min-height: 500px;
}

/* ==========================================================================
   Hero Carousel Section
   ========================================================================== */
.hero-banner-container {
    position: relative;
    width: 100%;
    background: radial-gradient(circle at 15% 25%, #F7E2C1 0%, #F7E2C1 60%, #F7E2C1 100%);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid rgba(96, 56, 19, 0.08);
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.hero-slide.active {
    display: grid;
    animation: fadeSlide 0.5s ease-in-out;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: scale(0.99); }
    to { opacity: 1; transform: scale(1); }
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #DEA445;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.subtitle-line {
    width: 50px;
    height: 2px;
    background-color: #DEA445;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e1b18;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: #5c554e;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-learn-more-btn {
    background-color: #9A6044;
    color: #ffffff;
    text-decoration: none;
    padding: 0.95rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(96, 56, 19, 0.2);
    transition: all 0.3s ease;
    font-family: var(--font-kannada);
}

.hero-learn-more-btn:hover {
    background-color: #804a30;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 56, 19, 0.3);
}

.hero-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1.05;
    border-radius: 50%;
    background-color: #ffffff;
    padding: 6px;
    box-shadow: 0 10px 35px rgba(96, 56, 19, 0.08);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Decorative elements in Hero */
.dots-grid {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#d9cfc1 20%, transparent 20%);
    background-size: 12px 12px;
    z-index: 1;
    opacity: 0.55;
}

.dots-top-right {
    top: -20px;
    right: -20px;
}

.dots-bottom-left {
    bottom: -20px;
    left: -20px;
}

.decorative-circle {
    position: absolute;
    border: 2px solid #f3ebe1;
    border-radius: 50%;
    z-index: 1;
}

.decorative-circle-top {
    width: 32px;
    height: 32px;
    top: -50px;
    left: 25%;
}

.decorative-circle-right {
    width: 55px;
    height: 55px;
    right: -70px;
    bottom: 25%;
    border-color: #ebdcd0;
}

/* Carousel Controls */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #9A6044;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.25s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: #DEA445;
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 4.5rem;
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: #9A6044;
    width: 26px;
    border-radius: 6px;
}

/* ==========================================================================
   Bottom Cards Grid Redesign
   ========================================================================== */
.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.hero-card-item {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2.2rem;
    text-align: center;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(96, 56, 19, 0.08);
    border-color: rgba(96, 56, 19, 0.25);
}

.card-icon-container {
    width: 76px;
    height: 76px;
    background-color: #F7E2C1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    color: #9A6044;
    font-size: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #f2e6d9;
}

.hero-card-item:hover .card-icon-container {
    background-color: #9A6044;
    color: #ffffff;
    border-color: #9A6044;
}

.card-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1e1b18;
    margin-bottom: 0.85rem;
    font-family: var(--font-kannada);
}

.card-desc {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.card-btn {
    color: #DEA445;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-family: var(--font-kannada);
}

.hero-card-item:hover .card-btn {
    color: #9A6044;
    gap: 0.75rem;
}

/* Home Tab Media Block */
.home-media-section {
    margin-top: 3rem;
    margin-bottom: 2.5rem;
}

.home-media-section .horizontal-scroll-container {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
}

.tab-content {







    display: none;







}















.tab-content.active {







    display: block;







    animation: fadeIn 0.4s ease;







}















@keyframes fadeIn {







    from { opacity: 0; transform: translateY(10px); }







    to { opacity: 1; transform: translateY(0); }







}















/* Section typography */







.section-title {







    font-size: 2rem;







    font-weight: 700;







    color: var(--text-dark-gold);







    margin-bottom: 1.5rem;







    border-bottom: 2px solid var(--primary-gold);







    padding-bottom: 0.5rem;







}















.subsection-title {







    font-size: 1.5rem;







    font-weight: 600;







    color: var(--text-dark-gold);







    margin: 2rem 0 1rem;







    padding-left: 0.5rem;







    border-left: 4px solid var(--primary-gold);







}















/* Cards */







.content-card {







    background: #ffffff;







    border-radius: var(--radius-md);







    border: 1px solid var(--color-border);







    padding: 1.5rem;







    margin-bottom: 1.5rem;







    box-shadow: var(--shadow-sm);







}















.content-card p {







    margin-bottom: 1rem;







    color: var(--text-primary);







    text-align: justify;







}















.content-card p:last-child {







    margin-bottom: 0;







}















.highlight-text {







    font-size: 1.1rem;







    font-weight: 500;







    color: var(--text-dark-gold);







    border-left: 3px solid var(--primary-gold);







    padding-left: 1rem;







    margin-bottom: 1.5rem !important;







}















.info-card-blue {







    background-color: var(--color-light-blue);







    border-left: 4px solid var(--color-blue);







}















.grid-2col {







    display: grid;







    grid-template-columns: 1fr 1fr;







    gap: 1.5rem;







    margin-bottom: 1.5rem;







}















.vision-card, .mission-card {







    border-top: 4px solid var(--primary-dark-gold);







}















.vision-card h4, .mission-card h4 {







    font-size: 1.25rem;







    color: var(--text-dark-gold);







    margin-bottom: 1rem;







    display: flex;







    align-items: center;







    gap: 0.5rem;







}















.styled-list {







    list-style: none;







}















.styled-list li {







    margin-bottom: 0.8rem;







    display: flex;







    align-items: flex-start;







}















.styled-list li span {







    margin-right: 0.5rem;







}















/* Long Term Impact Grid */







.impact-grid {







    display: grid;







    grid-template-columns: 1fr 1fr;







    gap: 1.5rem;







    margin-top: 1.5rem;







}















.impact-item {







    display: flex;







    gap: 1rem;







    background: #f8fafc;







    padding: 1.2rem;







    border-radius: var(--radius-md);







    border: 1px solid var(--color-border);







}















.impact-num {







    background: var(--text-dark-gold);







    color: white;







    width: 2.2rem;







    height: 2.2rem;







    border-radius: 50%;







    display: flex;







    align-items: center;







    justify-content: center;







    font-weight: 700;







    flex-shrink: 0;







}















.impact-body h5 {







    font-size: 1.05rem;







    font-weight: 600;







    margin-bottom: 0.4rem;







    color: var(--text-dark-gold);







}















.impact-body p {







    font-size: 0.95rem;







    color: var(--text-secondary);







}















/* Accordion Styling (for Services) */







.section-intro-card {







    border-left: 4px solid var(--primary-gold);







    background-color: var(--primary-light-gold);







}















.alert-info-mini {







    margin-top: 1rem;







    font-size: 0.95rem;







    color: var(--text-dark-gold);







    display: flex;







    align-items: center;







    gap: 0.5rem;







    font-weight: 500;







}















.accordion-container {







    margin-top: 1rem;







}















.accordion-item {







    border: 1px solid var(--color-border);







    border-radius: var(--radius-md);







    margin-bottom: 0.8rem;







    overflow: hidden;







    background-color: #ffffff;







    box-shadow: var(--shadow-sm);







    transition: all 0.3s ease;







}















.accordion-item:hover {







    box-shadow: var(--shadow-md);







    border-color: var(--primary-gold);







}















.accordion-header {







    width: 100%;







    padding: 1.2rem 1.5rem;







    background: #ffffff;







    border: none;







    outline: none;







    text-align: left;







    display: flex;







    justify-content: space-between;







    align-items: center;







    cursor: pointer;







    font-family: var(--font-kannada);







    font-size: 1.1rem;







    font-weight: 600;







    color: var(--text-primary);







    transition: background-color 0.3s ease;







}















.accordion-header:hover {







    background-color: #fafafa;







}















.icon-space {







    margin-right: 0.6rem;







    color: var(--primary-dark-gold);







}















.arrow-icon {







    font-size: 0.8rem;







    color: var(--text-secondary);







    transition: transform 0.3s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;







    padding: 6px;







    border-radius: 50%;







    background-color: #f1f5f9;







    display: inline-flex;







    align-items: center;







    justify-content: center;







    width: 26px;







    height: 26px;







    border: 1px solid var(--color-border);







}















.accordion-content {







    max-height: 0;







    overflow: hidden;







    transition: max-height 0.3s ease-out, padding 0.3s ease;







    padding: 0 1.5rem;







    border-top: 0px solid var(--color-border);







}















.accordion-item.active {







    border-color: var(--primary-gold);







}















.accordion-item.active .accordion-header {







    background-color: var(--primary-light-gold);







    color: var(--text-dark-gold);







}















.accordion-item.active .arrow-icon {







    transform: rotate(180deg);







    color: var(--text-dark-gold);







    background-color: var(--primary-light-gold);







    border-color: var(--primary-gold);







}







.accordion-header:hover .arrow-icon {







    color: var(--primary-dark-gold);







    background-color: rgba(251, 191, 36, 0.15);







    border-color: var(--primary-gold);







}















.accordion-item.active .accordion-content {







    max-height: 500px; /* Large enough to fit any content */







    padding: 1.2rem 1.5rem;







    border-top: 1px solid var(--color-border);







}















.accordion-content p {







    color: var(--text-secondary);







    font-size: 0.98rem;







    margin-bottom: 0.8rem;







}















.accordion-content p:last-child {







    margin-bottom: 0;







}















.bullet-list {







    margin-left: 1.5rem;







    margin-top: 0.5rem;







    list-style-type: disc;







}















.bullet-list li {







    margin-bottom: 0.4rem;







    color: var(--text-secondary);







    font-size: 0.95rem;







}















.benefits-box {







    border-top: 4px solid var(--color-green);







    background-color: #f0fdf4;







}















.benefits-box h4 {







    font-size: 1.25rem;







    color: var(--color-green);







    margin-bottom: 1rem;







    display: flex;







    align-items: center;







    gap: 0.5rem;







}















.check-list {







    list-style: none;







    display: grid;







    grid-template-columns: 1fr 1fr;







    gap: 0.8rem;







}















.check-list li {







    display: flex;







    align-items: center;







    gap: 0.5rem;







    font-size: 1rem;







    font-weight: 500;







}















.check-list li i {







    color: var(--color-green);







}















/* Sidebar Styling */







.sidebar {







    background-color: var(--sidebar-bg);







    border-radius: var(--radius-md);







    border: 1px solid var(--color-border);







    box-shadow: var(--shadow-sm);







    padding: 1.5rem;







    display: flex;







    flex-direction: column;







    gap: 1.5rem;







    align-self: start;







}















.sidebar-logo-container {







    display: flex;







    justify-content: center;







    padding: 1rem 0;







    border-bottom: 1px dashed rgba(120, 53, 15, 0.2);







}















.sidebar-logo {







    width: 150px;







    height: 150px;







    object-fit: contain;







    border-radius: 50%;







    box-shadow: var(--shadow-md);







    background-color: #ffffff;







    border: 2px solid var(--primary-gold);







}















.sidebar-links {







    list-style: none;







    border-bottom: 1px dashed rgba(120, 53, 15, 0.2);







    padding-bottom: 1.5rem;







}















.sidebar-links li {







    margin-bottom: 1rem;







    text-align: center;







}















.sidebar-links li:last-child {







    margin-bottom: 0;







}















.sidebar-links a {







    color: var(--color-blue);







    text-decoration: underline;







    font-weight: 600;







    font-size: 1.15rem;







    display: inline-flex;







    align-items: center;







    gap: 0.5rem;







    transition: color 0.3s ease;







}















.sidebar-links a:hover {







    color: var(--color-blue-hover);







    text-decoration: none;







}















.sidebar-apps-section h3 {







    font-size: 1.15rem;







    font-weight: 700;







    color: var(--text-dark-gold);







    margin-bottom: 1rem;







    text-align: center;







    display: flex;







    align-items: center;







    justify-content: center;







    gap: 0.5rem;







}















.app-download-buttons {







    display: flex;







    flex-direction: column;







    gap: 0.8rem;







}















.app-btn {







    display: flex;







    align-items: center;







    justify-content: space-between;







    padding: 0.8rem 1rem;







    border-radius: var(--radius-md);







    text-decoration: none;







    color: #ffffff;







    font-weight: 600;







    font-size: 0.95rem;







    box-shadow: var(--shadow-sm);







    transition: all 0.3s ease;







}















.app-btn:hover {







    transform: translateY(-2px);







    box-shadow: var(--shadow-md);







}















.btn-green {







    background-color: var(--color-green);







}















.btn-green:hover {







    background-color: var(--color-green-hover);







}















.btn-blue {







    background-color: var(--color-blue);







}















.btn-blue:hover {







    background-color: var(--color-blue-hover);







}















.btn-main-icon {







    font-size: 1.1rem;







}















.btn-text {







    flex-grow: 1;







    text-align: center;







    padding: 0 0.5rem;







    font-size: 0.9rem;







}















.btn-dl-icon {







    font-size: 0.9rem;







}















/* Benefits page styles */







.styled-bullet-list {







    margin-left: 1.5rem;







    margin-bottom: 1.5rem;







    list-style-type: square;







}















.styled-bullet-list li {







    margin-bottom: 0.6rem;







    font-weight: 500;







    color: var(--text-primary);







}















.list-heading {







    font-size: 1.1rem;







    font-weight: 600;







    margin-bottom: 0.8rem;







    color: var(--text-dark-gold);







}















.highlight-p {







    background-color: var(--primary-light-gold);







    border-left: 3px solid var(--primary-gold);







    padding: 0.8rem 1rem;







    border-radius: var(--radius-sm);







}















.benefit-steps {







    display: flex;







    flex-direction: column;







    gap: 1.5rem;







    margin-top: 1.5rem;







}















.benefit-step {







    display: flex;







    gap: 1.2rem;







    border-bottom: 1px solid var(--color-border);







    padding-bottom: 1.2rem;







}















.benefit-step:last-child {







    border-bottom: none;







    padding-bottom: 0;







}















.step-badge {







    background-color: var(--primary-gold);







    color: var(--text-dark-gold);







    width: 2.2rem;







    height: 2.2rem;







    border-radius: var(--radius-sm);







    display: flex;







    align-items: center;







    justify-content: center;







    font-weight: 700;







    font-size: 1.1rem;







    flex-shrink: 0;







}















.step-detail strong {







    font-size: 1.1rem;







    color: var(--text-dark-gold);







    display: block;







    margin-bottom: 0.4rem;







}















.step-detail p {







    font-size: 0.95rem;







    color: var(--text-secondary);







    text-align: justify;







}















.numbered-box-list {







    list-style: none;







    display: flex;







    flex-direction: column;







    gap: 1.2rem;







    margin-top: 1rem;







}















.numbered-box-list li {







    display: flex;







    gap: 1rem;







    background: #f8fafc;







    padding: 1.2rem;







    border-radius: var(--radius-md);







    border: 1px solid var(--color-border);







}















.box-num {







    background: var(--text-dark-gold);







    color: #ffffff;







    width: 2rem;







    height: 2rem;







    border-radius: 50%;







    display: flex;







    align-items: center;







    justify-content: center;







    font-weight: 700;







    flex-shrink: 0;







}















.box-text strong {







    color: var(--text-dark-gold);







    font-size: 1.05rem;







    display: block;







    margin-bottom: 0.3rem;







}















.box-text p {







    font-size: 0.95rem;







    color: var(--text-secondary);







}















.features-grid {







    list-style: none;







    display: grid;







    grid-template-columns: 1fr 1fr;







    gap: 1.5rem;







}















.features-grid li {







    background: #ffffff;







    padding: 1.2rem;







    border-radius: var(--radius-md);







    border: 1px solid var(--color-border);







    display: flex;







    flex-direction: column;







    gap: 0.5rem;







    box-shadow: var(--shadow-sm);







}















.features-grid li i {







    font-size: 1.5rem;







    color: var(--primary-dark-gold);







    margin-bottom: 0.2rem;







}















.features-grid li strong {







    font-size: 1.05rem;







    color: var(--text-dark-gold);







}















.features-grid li p {







    font-size: 0.9rem;







    color: var(--text-secondary);







    margin-bottom: 0;







}















.pros-cons-list {







    list-style: none;







    display: flex;







    flex-direction: column;







    gap: 1rem;







}















.pros-cons-list li {







    display: flex;







    gap: 1rem;







    align-items: flex-start;







    padding: 0.8rem 1rem;







    border-radius: var(--radius-sm);







    transition: background-color 0.2s ease;







}















.pros-cons-list li:hover {







    background-color: var(--primary-light-gold);







}















.pros-cons-list li i {







    font-size: 1.3rem;







    margin-top: 0.2rem;







}















.list-desc strong {







    font-size: 1.05rem;







    color: var(--text-dark-gold);







    display: block;







    margin-bottom: 0.2rem;







}















.list-desc p {







    font-size: 0.95rem;







    color: var(--text-secondary);







}















.text-primary {







    color: var(--primary-dark-gold);







}















/* Form Styling (Application Page) */







.form-instructions {







    font-weight: 500;







    color: var(--text-dark-gold);







    background-color: var(--primary-light-gold);







    padding: 1rem;







    border-radius: var(--radius-sm);







    border-left: 4px solid var(--primary-gold);







    margin-bottom: 1.5rem !important;







}















.form-group-grid {







    display: grid;







    grid-template-columns: 1fr 1fr;







    gap: 1.5rem;







}















.form-group {







    margin-bottom: 1.2rem;







}















.form-group label {







    display: block;







    margin-bottom: 0.5rem;







    font-weight: 600;







    font-size: 0.95rem;







    color: var(--text-primary);







}















.required {







    color: #e11d48;







}















.form-group input[type="text"],







.form-group input[type="tel"],







.form-group select,







.form-group textarea {







    width: 100%;







    padding: 0.75rem;







    border: 1px solid var(--color-border);







    border-radius: var(--radius-md);







    font-size: 1rem;







    font-family: var(--font-kannada);







    outline: none;







    transition: border-color 0.3s ease;







}















.form-group input:focus,







.form-group select:focus,







.form-group textarea:focus {







    border-color: var(--primary-dark-gold);







    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);







}















.file-upload-wrapper {







    position: relative;







    width: 100%;







    height: 48px;







}















.file-upload-wrapper input[type="file"] {







    position: absolute;







    width: 100%;







    height: 100%;







    opacity: 0;







    cursor: pointer;







    z-index: 2;







}















.file-custom-btn {







    position: absolute;







    top: 0;







    left: 0;







    width: 100%;







    height: 100%;







    background-color: #f8fafc;







    border: 1px dashed var(--color-border);







    border-radius: var(--radius-md);







    display: flex;







    align-items: center;







    justify-content: center;







    gap: 0.5rem;







    font-weight: 600;







    color: var(--text-secondary);







    transition: all 0.3s ease;







}















.file-upload-wrapper:hover .file-custom-btn {







    border-color: var(--primary-gold);







    background-color: var(--primary-light-gold);







    color: var(--text-dark-gold);







}















.form-submit-container {







    text-align: center;







    margin-top: 1.5rem;







}















.submit-btn {







    background-color: var(--text-dark-gold);







    color: #ffffff;







    border: none;







    padding: 0.8rem 2rem;







    font-size: 1.1rem;







    font-weight: 600;







    font-family: var(--font-kannada);







    border-radius: var(--radius-md);







    cursor: pointer;







    display: inline-flex;







    align-items: center;







    gap: 0.5rem;







    box-shadow: var(--shadow-sm);







    transition: all 0.3s ease;







}















.submit-btn:hover {







    background-color: #5f2409;







    transform: translateY(-1px);







    box-shadow: var(--shadow-md);







}















.submit-btn.full-width {







    width: 100%;







    justify-content: center;







}















/* Contact Page specific */







.contact-info-card {







    background-color: #f5eae0;







    border-left: 4px solid #9A6044;







}















.contact-info-card h4 {







    color: #9A6044;







    margin-bottom: 1.2rem;







}
















.contact-detail-item {







    display: flex;







    align-items: flex-start;







    gap: 1rem;







    margin-bottom: 1.2rem !important;







}















.contact-detail-item i {







    font-size: 1.2rem;







    color: var(--color-blue);







    margin-top: 0.2rem;







}















.contact-detail-item span {







    font-size: 0.98rem;







}















.map-placeholder {







    margin-top: 1rem;







    border: 1px solid var(--color-border);







    border-radius: var(--radius-md);







    overflow: hidden;







    box-shadow: var(--shadow-sm);







}















/* Footer Styling */







.site-footer {







    text-align: center;







    padding: 2rem 1rem;







    margin-top: 3rem;







    background-color: #ffffff;







    border-top: 1px solid var(--color-border);







    color: var(--text-secondary);







    font-size: 0.9rem;







}















.mar-top-lg {







    margin-top: 2.5rem;







}















/* Responsiveness */







@media (max-width: 1024px) {







    .app-container {







        display: flex;







        flex-direction: column;







    }







    







    .sidebar {







        align-self: stretch;







        order: -1; /* Move logo and quick links to the top on mobile screens */







        margin-bottom: 1.5rem;







    }







}















@media (max-width: 768px) {







    .navbar {







        position: static !important; /* Disable sticky navbar on mobile to maximize scroll space */







        flex-direction: column;







        gap: 1rem;







        padding: 1rem;







    }







    







    .nav-links {







        flex-wrap: wrap;







        justify-content: center;







        gap: 0.5rem;







    }







    







    .nav-item {







        margin-right: 0;







    }







    







    .grid-2col, .impact-grid, .features-grid, .check-list, .form-group-grid {







        grid-template-columns: 1fr;







        gap: 1rem;







    }







    







    .main-header h1 {







        font-size: 1.8rem;







    }







}















/* Styling for nested accordions support */







.outer-accordion.active .accordion-content {







    max-height: 4500px !important; /* Let it expand enough for all inner accordions */







}















/* Bilingual support display rules */







html:not([lang="en"]) .lang-en {







    display: none !important;







}







html[lang="en"] .lang-kn {







    display: none !important;







}















/* Footer Copyright Styling */







.main-footer-copyright {
    text-align: center;
    padding: 2.5rem 1rem;
    background-color: #1e293b;
    color: #94a3b8;
    border-top: 1px solid #334155;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 2rem;
    font-family: var(--font-kannada);
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.footer-copyright-text {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-links-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0.25rem 0;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.link-separator {
    color: #475569;
    user-select: none;
}

.footer-brand {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 400;
    margin-top: 0.25rem;
}















/* Custom bullet list layout for application instructions */







.styled-bullet-list {







    list-style: none;







    padding: 0;







    display: flex;







    flex-direction: column;







    gap: 1rem;







    margin-bottom: 1.5rem;







}















.styled-bullet-list li {







    position: relative;







    padding-left: 1.8rem;







    font-size: 1.1rem;







    font-weight: 500;







    line-height: 1.6;







    color: var(--text-primary);







}















.styled-bullet-list li::before {







    content: "•";







    position: absolute;







    left: 0.5rem;







    color: var(--primary-gold);







    font-size: 1.8rem;







    line-height: 1;







    top: -0.1rem;







}















/* Custom styling for contact links */







.contact-detail-item a {







    color: var(--text-dark-gold);







    text-decoration: none;







    transition: color 0.2s ease;







}















.contact-detail-item a:hover {







    color: var(--primary-dark-gold);







    text-decoration: underline;







}















/* Extra mobile screen support (below 480px) */







@media (max-width: 480px) {







    .content-area {







        padding: 1.25rem;







    }







    







    .navbar {







        padding: 0.8rem;







    }







    







    .nav-links a {







        padding: 0.4rem 0.8rem;







        font-size: 0.9rem;







    }







    







    .main-header {







        padding: 1rem;







    }







    







    .main-header h1 {







        font-size: 1.5rem;







    }















    .accordion-header {







        padding: 1rem;







        font-size: 1rem;







    }







    







    .accordion-content {







        padding: 0 1rem;







    }















    .accordion-item.active .accordion-content {







        padding: 1rem;







    }







    







    .main-footer-copyright {







        padding: 1.2rem 0.8rem;







        font-size: 0.85rem;







    }







    







    .styled-bullet-list li {







        font-size: 0.95rem;







    }







}















/* Mobile Menu Toggle Button styling */







.menu-toggle-btn {







    display: none; /* Hidden on desktop view */







    background: var(--text-dark-gold);







    color: #ffffff;







    border: none;







    padding: 0.5rem 1rem;







    font-size: 1rem;







    font-weight: 600;







    border-radius: var(--radius-sm);







    cursor: pointer;







    align-items: center;







    gap: 0.5rem;







    font-family: var(--font-kannada);







    transition: all 0.2s ease;







}















.menu-toggle-btn:hover {







    background-color: var(--primary-dark-gold);







}















@media (max-width: 768px) {







    .menu-toggle-btn {







        display: inline-flex; /* Show on mobile view */







    }







    







    .navbar {







        display: flex !important;







        flex-direction: row !important;







        flex-wrap: wrap !important;







        justify-content: space-between !important;







        align-items: center !important;







        padding: 0.8rem 1.5rem !important;







    }















    .nav-links {







        display: none; /* Collapsed by default on mobile */







        width: 100%;







        flex-direction: column;







        gap: 0.5rem;







        margin-top: 1rem;







        border-top: 1px solid var(--color-border);







        padding-top: 1rem;







    }















    .nav-links.active {







        display: flex; /* Expanded on toggle */







    }







    







    .nav-item {







        width: 100%;







        text-align: center;







        margin-right: 0 !important;







    }







    







    .nav-item a {







        display: block;







        padding: 0.6rem;







    }







}















/* Horizontal scroll container on the Home page */







.horizontal-scroll-container {







    display: flex;







    gap: 1.2rem;







    padding: 0.8rem 0;







    margin-bottom: 1.5rem;







    width: 100%;







    overflow: hidden; /* Prevent parent scrolling */







}















/* Auto-scroll track styling */







.images-auto-scroll-container {







    flex-grow: 1;







    overflow-x: hidden; /* Hide scrollbars, user won't scroll */







    width: 100%;







}















.images-scroll-track {

    display: flex;

    gap: 1.2rem;

    width: max-content;

    animation: continuous-reel 25s linear infinite; /* Smooth continuous infinite reel */

    will-change: transform;

}



@keyframes continuous-reel {

    0% {

        transform: translateX(0);

    }

    100% {

        transform: translateX(var(--reel-width, -1696px)); /* Loop wrap point computed dynamically in JS */

    }

}















.horizontal-scroll-container::-webkit-scrollbar {







    height: 6px;







}















.horizontal-scroll-container::-webkit-scrollbar-thumb {







    background-color: var(--primary-gold);







    border-radius: 4px;







}















.horizontal-scroll-container::-webkit-scrollbar-track {







    background: transparent;







}















.scroll-item {







    flex: 0 0 auto;







    width: 320px;







    height: 320px;







    border-radius: var(--radius-md);







    overflow: hidden;







    box-shadow: var(--shadow-sm);







    border: 1px solid var(--color-border);







    background-color: #ffffff;







}















.scroll-item img {







    width: 100%;







    height: 100%;







    object-fit: contain;







    background-color: #ffffff;







}















.scroll-item video {







    width: 100%;







    height: 100%;







    object-fit: cover;







    background-color: #000000;







}















/* Tab space (indent) in the first line of Home content paragraphs only */







#home-section .content-card p {







    text-indent: 2.5rem; /* Standard indent approximating one tab key space */







}















/* Responsive adjustment for scroll items */







@media (max-width: 480px) {







    .scroll-item {







        width: 260px;







        height: 260px;







    }







}















/* Arrow group container */







.arrow-group {







    display: inline-flex;







    align-items: center;







    gap: 0.5rem;







    flex-shrink: 0;







}















/* Accordion Arrow helper pill badge */







.arrow-helper {







    font-size: 0.72rem;







    font-weight: 700;







    color: var(--text-secondary);







    vertical-align: middle;







    display: inline-flex;







    align-items: center;







    border: 1px solid var(--color-border);







    padding: 2px 8px;







    border-radius: 12px;







    background-color: #f8fafc;







    transition: all 0.2s ease;







    text-transform: uppercase;







    letter-spacing: 0.03em;







}















.arrow-helper .expanded-msg {







    display: none;







}















.accordion-item.active .arrow-helper .collapsed-msg {







    display: none;







}















.accordion-item.active .arrow-helper {







    border-color: var(--primary-gold);







    color: var(--text-dark-gold);







    background-color: var(--primary-light-gold);







}















.accordion-item.active .arrow-helper .expanded-msg {







    display: inline;







}















.accordion-header:hover .arrow-helper {







    border-color: var(--primary-gold);







    background-color: var(--primary-light-gold);







}









/* ==========================================================================
   Policy & Contact Modal Styling
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    background-color: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    max-height: 85vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 12px 30px -10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-kannada);
}

.modal-overlay.active .modal-window {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--navbar-bg), #b57a5c);
    color: #ffffff;
    border-bottom: 2px solid var(--primary-gold);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

.modal-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
}

.modal-tab-content {
    display: none;
}

.modal-tab-content.active {
    display: block;
}

.modal-body h4 {
    color: var(--navbar-bg);
    font-size: 1.05rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body strong {
    color: #0f172a;
}

.contact-modal-info {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-modal-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-modal-info li i {
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
    color: var(--navbar-bg);
}

.contact-modal-info a {
    color: var(--navbar-bg);
    text-decoration: none;
    font-weight: 600;
}

.contact-modal-info a:hover {
    text-decoration: underline;
    color: var(--primary-gold);
}

/* Custom Scrollbar for Modal Body */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ==========================================================================
   Responsive adjustments for redesigned layout
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-content-left {
        align-items: center;
    }
    .hero-desc {
        margin: 0 auto 2.5rem;
    }
    .hero-banner-container {
        padding: 3rem 2rem;
    }
    .carousel-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
    }
    .hero-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }
    .header-logo-container {
        flex-direction: column;
        text-align: center;
    }
    .header-search-container {
        margin: 1rem 0;
        width: 100%;
        max-width: 100%;
    }
    .hero-cards-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .navbar {
        height: auto;
        padding: 0.5rem 1rem;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        margin-top: 1rem;
        padding-left: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-item {
        margin-right: 0;
        width: 100%;
        padding: 0.25rem 0;
    }
    .nav-item a {
        width: 100%;
    }
    .nav-downloads-dropdown {
        margin-top: 1rem;
        width: 100%;
    }
    .downloads-btn {
        width: 100%;
        justify-content: center;
    }
    .downloads-dropdown-content {
        width: 100%;
        position: static;
        box-shadow: none;
        border: 1px solid #eddcd0;
        margin-top: 5px;
    }
}
