
:root {
    --primary-color: #8B4513;
    --secondary-color: #8B4513;
    --light-green: #a8d4b0;
    --beige: #d4b896;
    --dark-overlay: rgba(0, 0, 0, 0.3);
}
/* .tiro-devanagari-marathi-regular {
  font-family: "Tiro Devanagari Marathi", serif;
  font-weight: 400;
  font-style: normal;
}

.tiro-devanagari-marathi-regular-italic {
  font-family: "Tiro Devanagari Marathi", serif;
  font-weight: 400;
  font-style: italic;
} */

body {
    font-family: 'Tiro Devanagari Marathi', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.top-header {
    background-color: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 32px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 28px;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 14px;
    color: #999;
    font-weight: normal;
    letter-spacing: 1px;
}

.bg-secondary-color{
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
}
.border-primary-color{
    border-color: var(--primary-color);
}
.btn-outline-primary-color{
    border-color: var(--primary-color);
}

.btn-outline-primary-color:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.text-primary-color{
    color: var(--primary-color);
}


/* /////////////////////////////// */
/* Custom CSS to make carousel indicators circular */
.left-carousel .carousel-inner .carousel-item .card img{
    height: 300px;
    width: auto;
}
.left-carousel-indicators {
    bottom: -30px;
    margin-bottom: 0;
}
.left-carousel-indicators button {
    width: 8px !important; 
    height: 8px !important;  
    border-radius: 50% !important;  
    margin: 0 2px !important;  
    background: linear-gradient(135deg, #F0E68C 0%, #DDD675 100%);
    border: 2px solid var(--primary-color) !important; 
}

.sadasya .card img, .employees .card img{
    height: 200px;
    width: auto;
}
.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: var(--primary-color);
}


/* Navigation Styles */
.main-nav {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #FFF8DC;
    padding: 0;
    /* color: black;
    border-bottom: 1px solid black;
    border-top: 1px solid black; */
}
.main-nav .dropdown-menu{
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}
.main-nav .dropdown-menu .dropdown-item{
    color: white;
}
.main-nav .nav-item:hover, .main-nav .dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #F0E68C 0%, #DDD675 100%);
    
}
.navbar-nav .nav-link:hover, .main-nav .dropdown-menu .dropdown-item:hover {
    color: black !important;
}

.main-nav .nav-link, .main-nav .nav-link.active, .main-nav .nav-link.show {
    color: white;
    padding: 10px 15px !important;
    font-weight: 500;
    transition: background-color 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)),
                url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-buy-now {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-buy-now:hover {
    background-color: var(--light-green);
    color: white;
    transform: translateY(-2px);
}

/* Navigation arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s;
    z-index: 3;
}

.hero-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

/* Settings icon */
.settings-icon {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 20px !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-buy-now {
        padding: 12px 25px;
        font-size: 16px;
    }
}



/* body { */
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6; */
    /* background-color: #f7f6f4; */
/* } */

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.section-title {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* stat */
.stats-section {
    background: linear-gradient(80deg, #8B4513 0%, #A0522D 50%);
    color: white;
    padding: 30px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* news */
.news-card {
    /* background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease; */
    background: linear-gradient(135deg, #F0E68C 0%, #DDD675 100%);
    border:3px solid #DAA520;
    border-radius: 15px;
    transition: all 0.3s ease;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: bold;
}
/* .contact-info {
        background: white;
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    } */
        
.important-link{
    background: linear-gradient(135deg, #F0E68C 0%, #DDD675 100%);
    border:3px solid #DAA520;
    border-radius: 15px;
}
.important-link h5{
    color: var(--primary-color);
}
.important-link a{
    color:#2F4F2F
}
.scheme-card {
    background: linear-gradient(135deg, #F0E68C 0%, #DDD675 100%);
    border:3px solid #DAA520;
    border-radius: 15px;
    padding: 2rem;
    /* text-align: center; */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /* margin-bottom: 2rem; */
    /* height: 100%; */
}
.scheme-card .scheme-name{
    border-right: 1px solid var(--primary-color);
}

.service-card {
    background: linear-gradient(135deg, #F0E68C 0%, #DDD675 100%);
    border:3px solid #DAA520;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    height: 100%;
}
.service-card h4{
    color:#2F4F2F;
    margin-bottom:15px;
}
.service-card p{
    color: #556B2F;
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card {
    /* border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease; */
    background: linear-gradient(135deg, #F0E68C 0%, #DDD675 100%);
    border:3px solid #DAA520;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.card .fas{
    color: var(--primary-color);
}

.card:hover {
    transform: translateY(-5px);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px 0;
}

.contact-info {
    background: linear-gradient(135deg, #F0E68C 0%, #DDD675 100%);
    
    padding: 10px;
    border-radius: 10px;
}

.btn-primary {
    background: #667eea;
    border: none;
}

.btn-primary:hover {
    background: #5a6fd8;
}

.map-container {
    height: 400px;
    background: #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yojana-card {
    border-left: 4px solid #667eea;
}

/* .tourist-card {
    border-left: 4px solid #28a745;
} */

.cursor-pointer{
    cursor: pointer;
}

.admin-details .table tr td, .admin-details .table tr th, .basic-details table tr td, .basic-details ul li{
    background-color: unset;
}


.btn-submit{
	background-color: var(--primary-color) ;
    color: white;
	font-weight:bold;
}
.btn-submit:hover{
    background-color: white ;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-delete{
	background-color:red;
	color:white;
	font-weight:bold;
	border:none;
}
.btn-cancel{
	background-color:grey;
	color:white;
	font-weight:bold;
	border:none;
}

.required:after {
    content:" *";
    color: red;
}