:root {
    --primary-color: #1a365d; /* Deep Blue */
    --secondary-color: #dd6b20; /* Saffron */
    --light-bg: #f8f9fa;
    --text-dark: #2d3748;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.navbar-brand img {
    height: 60px;
    margin-right: 15px;
}

.indian-bank-logo {
    height: 45px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.brand-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-text span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.nav-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 500;
    margin-left: 10px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.nav-btn:hover {
    background-color: white;
    color: var(--primary-color) !important;
}

.nav-btn-outline {
    background-color: transparent;
    color: var(--primary-color) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 500;
    margin-left: 10px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

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

/* Hero Carousel */
.carousel-item {
    height: 600px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 30%;
    text-align: left;
}

.carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s 0.2s;
    animation-fill-mode: both;
}

/* Marquee */
.news-ticker {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    position: relative;
}

.ticker-label {
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Quick Actions Section */
.action-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid #eee;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s;
}

.action-card:hover .action-icon {
    background: var(--primary-color);
    color: white;
}

.action-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Guide Banner */
.guide-banner {
    background: linear-gradient(to right, #1a365d, #2a4365);
    color: white;
    padding: 25px 0;
    /* margin-bottom: 40px; */
    position: relative;
    z-index: 5;
}

/* Places to Visit */
.place-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    background: white;
}

.place-img {
    height: 200px;
    overflow: hidden;
}

.place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.place-card:hover .place-img img {
    transform: scale(1.1);
}

.place-content {
    padding: 20px;
}

.place-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Social Feeds */
.social-feed-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    border: 1px solid #e1e1e1;
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
}

.fb-icon { background: #1877f2; }
.insta-icon { background: #e4405f; }

.mock-post {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.mock-post-img {
    height: 150px;
    background: #ddd;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.8rem;
}

.mock-post-content {
    padding: 10px;
    font-size: 0.85rem;
    color: #555;
}

/* Useful Links */
.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}

.link-list a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.link-list a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.link-list i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Partners Section */
.partners-section {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #cbd5e0;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-item { height: 400px; }
    .carousel-caption h2 { font-size: 2rem; }
    .brand-text h1 { font-size: 1.2rem; }
    .ticker-label { font-size: 0.7rem; padding: 0 10px; }
    .indian-bank-logo { display: none; }
}

.site-footer-logo img {
    height: 53px;
    width: auto;
    margin-bottom: 20px;
}
/* ===== SUB PAGES CSS STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #2a4365);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* About Page Styles */
.content-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-color);
}

.fact-list {
    list-style: none;
    padding: 0;
}

.fact-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.fact-list li:last-child {
    border-bottom: none;
}

.leader-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

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

.leader-img {
    margin-bottom: 20px;
}
.leader-card .leader-img img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.leader-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leader-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.achievement-card {
    text-align: center;
    padding: 20px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.achievement-text {
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}

/* Services Page Styles */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.process-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.support-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Tenders Page Styles */
.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover, .active-category {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.active-category .category-icon {
    background: var(--secondary-color);
    color: white;
}

.category-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.category-count {
    color: #666;
    margin-bottom: 0;
}

.tender-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
}

.tender-header {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.tender-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tender-ref {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.tender-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-closing {
    background: #fff3cd;
    color: #856404;
}

.tender-body {
    padding: 30px;
}

.tender-description {
    color: #666;
    margin-bottom: 15px;
}

.tender-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-item {
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.tender-value {
    text-align: right;
}

.value-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.value-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tender-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.guidelines-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guidelines-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px dashed #eee;
}

.guidelines-list li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary-color);
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-text {
    color: #666;
    margin-bottom: 0;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.map-placeholder {
    background: #f8f9fa;
    border-radius: 10px;
    /* padding: 60px 20px; */
    text-align: center;
    border: 2px dashed #ddd;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.department-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

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

.dept-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.dept-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dept-contact {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.emergency-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #dc3545;
}

.emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.emergency-item {
    color: #666;
    font-size: 0.95rem;
}

/* Mobile Responsive for Sub Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .tender-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .tender-actions {
        justify-content: center;
        margin-top: 20px;
    }
    
    .tender-value {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .emergency-numbers {
        text-align: center;
    }
    
    .emergency-item {
        margin-bottom: 10px;
    }
}