/* ========== Base ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Noto Sans Devanagari', Arial, sans-serif;
  line-height: 1.6; color: #333; background-color: #f8f9fa;
}

/* Target all links in footer */
footer a,
footer .footer-link {
    color: #ffffff !important;
    text-decoration: none;
}

footer a:hover,
footer .footer-link:hover {
    color: #e0e0e0 !important;
    text-decoration: none;
}

/* News Section Container Styles */
.news-section-container {
    background: #ffffff;
    margin-bottom: 30px;
    padding: 25px 0;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.news-section-container:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.news-sections {
    padding: 20px 0;
}

/* Category Header Styles */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #1872de;
}

.category-header h4 {
    color: #1872de;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
}

.category-header h4 i {
    margin-right: 10px;
    font-size: 18px;
}

.view-more {
    color: #1872de;
    text-decoration: none;
    margin-left: 1000px;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 8px;
    border: 2px solid #1872de;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-more:hover {
    background: #1872de;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Modern Advertisement Styles */
.advertisement-frame {
    margin-bottom: 25px;
    padding: 15px 0;
    border-radius: 12px;
    overflow: hidden;
}

/* App Download Ad Style */
.app-ad-style {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ad-banner-modern {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.app-icon {
    text-align: center;
}




.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}




.app-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-info h4 {
    color: #333;
    font-weight: 700;
    margin: 0 0 5px 0;
    font-size: 18px;
}

.app-info p {
    color: #666;
    margin: 0 0 8px 0;
    font-size: 14px;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    background:#ff6b6b;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.downloads {
    color: #888;
    font-size: 12px;
}

.download-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    width: 100%;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Cashback Deal Ad Style */
.deal-ad-style {
    background: linear-gradient(135deg, #ff9a00 0%, #ffb347 100%);
    position: relative;
    overflow: hidden;
}

.deal-banner {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.deal-mascot {
    text-align: center;
}

.mascot-placeholder {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto;
}

.deal-text h3 {
    color: #fff;
    font-weight: 800;
    margin: 0 0 10px 0;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.deal-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px 0;
}

.deal-offer {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

.offer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    display: block;
}

.offer-amount {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.grab-deal-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    width: 100%;
    text-transform: uppercase;
}

.grab-deal-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Deal Coins Animation */
.deal-coins {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coin {
    position: absolute;
    color: #ffd700;
    font-weight: bold;
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
}

.coin-1 { top: 20%; right: 10%; animation-delay: 0s; }
.coin-2 { top: 50%; right: 5%; animation-delay: 1s; }
.coin-3 { top: 70%; right: 15%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Service Ad Style */
.service-ad-style {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-banner {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 12px;
    padding: 25px;
    color: white;
}

.service-info h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.service-info p {
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.contact-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    width: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Product Ad Style */
.product-ad-style {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.product-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-image {
    text-align: center;
}

.product-placeholder {
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin: 0 auto;
    border: 2px dashed #dee2e6;
}

.product-details h3 {
    color: #333;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-size: 18px;
}

.product-details p {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 14px;
}

.sale-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 18px;
}

.discount-badge {
    background: #27ae60;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.shop-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    width: 100%;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Logo Container */
.logo {
    width: 180px;
    height: 100px;
    background: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* ========== Top Header ========== */
.top-header { 
    background: linear-gradient(135deg,#1d4ed8,#2563eb); 
    color:#fff; 
    font-size:13px; 
    min-height:50px; 
}

/* Location Navigation with Horizontal Scroll */
.location-nav-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.location-nav {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 8px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.location-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.location-btn {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-btn.active {
    background: #fff;
    color: #1872de;
    font-weight: 600;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #1872de;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-left {
    left: -5px;
}

.scroll-right {
    right: -5px;
}

/* Mobile Location Navigation */
.location-nav-container-mobile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 0 25px;
}

.location-nav-mobile {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 6px;
    padding: 6px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.location-nav-mobile::-webkit-scrollbar {
    display: none;
}

.scroll-btn-mobile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #1872de;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.scroll-left-mobile {
    left: 2px;
}

.scroll-right-mobile {
    right: 2px;
}

/* Hide scroll buttons when not needed */
.scroll-btn.hidden,
.scroll-btn-mobile.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}


.top-header .social-icon:hover { 
    transform: scale(1.08); 
    background: rgba(255,255,255,0.2); 
    color:#fff !important; /* FIXED X LOGO VISIBILITY */
}

.profile-dropdown-btn {
  color:#fff; 
  border-color: rgba(255,255,255,.3); 
  font-size:11px; 
  padding:4px 8px; 
  min-height:32px;
}

.profile-dropdown-btn:hover { 
    background: rgba(255,255,255,.1); 
    border-color: rgba(255,255,255,.5); 
    color:#fff; 
}

.profile-submenu {
  background:#fff; 
  border:1px solid rgba(0,0,0,.1); 
  border-radius:8px; 
  box-shadow:0 4px 8px rgba(0,0,0,.1); 
  min-width:180px;
}

.profile-submenu .dropdown-item { 
    padding:8px 16px; 
    font-size:13px; 
    color:#374151; 
    display:flex; 
    align-items:center; 
    gap:8px; 
}

.profile-submenu .dropdown-item:hover { 
    background:#f3f4f6; 
    color:#2563eb; 
}

.profile-submenu .dropdown-item i { 
    font-size:12px; 
    width:16px; 
}

/* ========== Main Navigation Header ========== */
.main-nav-header {
  background: linear-gradient(135deg,#2563eb,#1d4ed8); 
  color:#fff;
  box-shadow:0 2px 4px rgba(0,0,0,.1); 
  min-height:80px;
}

.logo { 
    display:flex; 
    align-items:center; 
    justify-content:flex-start; 
    padding-left:.5rem; 
}

.logo-img {
  width: clamp(180px, 15vw, 140px); 
  height:auto; 
  object-fit:contain;
  border-radius:0; 
  box-shadow:none; 
  background:transparent; 
  padding:0px;
}

.location-nav, .location-nav-mobile { 
    display:flex; 
    justify-content:center; 
    gap:5px; 
    flex-wrap:wrap; 
}

.location-btn {
  color: rgba(255,255,255,.85); 
  text-decoration:none; 
  padding:2px 16px; 
  border-radius:12px; 
  font-size:16px; 
  font-weight:500;
  border:2px solid rgba(255,255,255,.2); 
  transition: background-color .2s, color .2s, transform .2s;
}

.location-btn:hover, .location-btn.active { 
    background: rgba(255,255,255,.2); 
    color:#fff; 
    border-color: rgba(255,255,255,.4); 
}

.search-container .form-control { 
    border:none; 
    border-radius:15px 0 0 15px; 
    font-size:12px; 
    padding:6px 10px; 
    height:32px; 
}

.search-btn { 
    border-radius:0 15px 15px 0; 
    border:none; 
    padding:6px 10px; 
    height:32px; 
}

/* ========== Category Navigation ========== */
.category-nav {
  position: sticky; 
  top: 0; 
  z-index: 800;
  background: linear-gradient(135deg,#1d4ed8,#2563eb);
  padding: 6px 0; 
  border-top:1px solid rgba(255,255,255,.1);
}

.category-buttons { 
    display:flex; 
    gap:6px; 
    align-items:center; 
    overflow-x:auto; 
    padding:3px; 
    scrollbar-width:none; 
    -ms-overflow-style:none; 
}

.category-buttons::-webkit-scrollbar { 
    display:none; 
}

.category-btn {
  color: rgba(255,255,255,.85); 
  text-decoration:none; 
  padding:6px 12px; 
  border-radius:15px; 
  font-size:14px; 
  font-weight:500;
  white-space:nowrap; 
  border:1px solid rgba(255,255,255,.2); 
  display:flex; 
  align-items:center; 
  gap:4px;
  transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
}

.category-btn:hover, .category-btn.active { 
    background: rgba(255,255,255,.2); 
    color:#fff; 
    transform: translateY(-1px); 
    box-shadow:0 2px 4px rgba(0,0,0,.2); 
}

/* ========== Breaking News ========== */
.breaking-news { 
    background: linear-gradient(135deg,#dc2626,#ef4444); 
    color:#fff; 
    padding:6px 0; 
    min-height:35px; 
}

.breaking-content { 
    display:flex; 
    align-items:center; 
    gap:10px; 
}

.breaking-label { 
    background: rgba(255,255,255,.2); 
    padding:3px 8px; 
    border-radius:10px; 
    font-size:10px; 
    font-weight:600; 
    white-space:nowrap; 
}

.breaking-text { 
    flex:1; 
    overflow:hidden; 
    font-size:14px; 
}

/* ========== Main Content ========== */
.main-content { 
    padding: 15px 0; 
    background: #f5f5f5; /* GREY BACKGROUND WHERE CURSOR IS */
}

.section-header h2 { 
    font-size:1.5rem; 
    color:#1f2937; 
    font-weight:600; 
    margin-bottom:10px; 
}

.section-line { 
    height:2px; 
    background: linear-gradient(135deg,#2563eb,#3b82f6); 
    width:50px; 
    margin-bottom:15px; 
}

.featured-news { 
    background:#fff; 
    border-radius:6px; 
    box-shadow:0 2px 6px rgba(0,0,0,.1); 
    overflow:hidden; 
}

.news-image { 
    position:relative; 
    height:292px; 
    overflow:hidden; 
}

.news-image img { 
    width:100%; 
    height:100%; 
    object-fit:cover; 
}

.news-badge { 
    position:absolute; 
    top:10px; 
    left:10px; 
    background:#2563eb; 
    color:#fff; 
    padding:4px 8px; 
    border-radius:10px; 
    font-size:9px; 
    font-weight:600; 
    text-transform:uppercase; 
}

.featured-content h3 { 
    font-size:1.2rem; 
    font-weight:600; 
    color:#1f2937; 
    line-height:1.4; 
    margin-bottom:8px; 
}

.news-excerpt { 
    color:#6b7280; 
    line-height:1.6; 
    margin-bottom:10px; 
    font-size:14px; 
}

.news-meta { 
    display:flex; 
    justify-content:space-between; 
    align-items:center; 
    font-size:11px; 
    color:#9ca3af; 
}

/* ========== Sidebar ========== */
.sidebar-widget { 
    background:#fff; 
    border-radius:8px; 
    box-shadow:0 2px 8px rgba(0,0,0,.08); 
    overflow:hidden; 
    margin-bottom:20px; 
}

.widget-header { 
    background: linear-gradient(135deg,#f8fafc,#e2e8f0); 
    padding:15px 20px; 
    border-bottom:1px solid #e5e7eb; 
    display:flex; 
    justify-content:space-between; 
    align-items:center; 
}

.widget-header h5 { 
    margin:0; 
    font-size:1rem; 
    font-weight:600; 
    color:#374151; 
}

.widget-content { 
    padding:0; 
}

.latest-news-list { 
    padding:0; 
}

.latest-item { 
    display:flex; 
    gap:12px; 
    padding:15px 20px; 
    border-bottom:1px solid #f3f4f6; 
    transition: background-color .2s ease; 
}

.latest-item:hover { 
    background:#f8fafc; 
}

.latest-item:last-child { 
    border-bottom:none; 
}

.latest-item img { 
    width:60px; 
    height:45px; 
    object-fit:cover; 
    border-radius:4px; 
    flex-shrink:0; 
}

.item-content h6 { 
    font-size:.85rem; 
    font-weight:600; 
    color:#374151; 
    line-height:1.3; 
    margin-bottom:4px; 
}

.item-content small { 
    color:#9ca3af; 
    font-size:11px; 
}

/* ========== Pre-Footer Section ========== */
.pre-footer-section {
    background: linear-gradient(135deg,#1e40af,#3b82f6);
    color: #fff;
    padding: 15px 0;
    margin-bottom: 0;
}

.pre-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pre-footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pre-footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.pre-footer-links a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-1px);
}

/* ========== Footer ========== */
/* ========== Footer ========== */
.udaandigital-footer { 
    background: #1872de; 
    color: #fff; 
    margin-top: 0; /* REMOVED MARGIN AS PRE-FOOTER IS ABOVE */
}

.udaandigital-footer-container {
    background: #1872de !important; 
    color: #fff !important; 
    padding: 30px 0 0 0 !important; /* REMOVED BOTTOM PADDING */
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-brand span {
    font-size: 2em; 
    font-weight: 700; 
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.footer-description {
    font-size: 1.12em; 
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-description span {
    font-size: 0.9em;
}

.company-description {
    max-width: 350px; 
    font-size: 0.97em; 
    margin-bottom: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.footer-product-attribution {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.footer-prod {
    font-size: 0.93em; 
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-product-attribution img {
    width: 120px;
    height: auto;
}

.footer-links .col > div {
    margin-bottom: 8px;
}

.footer-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #e0e0e0 !important;
    text-decoration: none;
}

.footer-contact h6 {
    font-size: 1.18em; 
    font-weight: 700; 
    margin-bottom: 12px;
    color: #fff;
}

.footer-contact .contact-info {
    font-size: 0.98em; 
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-contact .contact-info b {
    display: block;
    margin-bottom: 4px;
}

/* NEW: Social Icons Section - Positioned above copyright */
.footer-social-section {
    background: rgba(96, 96, 96, 0.15);
    padding: 25px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-social-icons {
    display: inline-flex;
    gap: 20px;
    margin-bottom: 0;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.4em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Copyright Section - Now at the bottom */
.footer-copyright {
    background: rgba(96, 96, 96, 0.3);
    padding: 20px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-content {
    text-align: center;
}

.copyright-text {
    color: #d1d5db !important;
    font-size: 1.08em;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-social-icons {
        gap: 30px;
    }
    
    .footer-social-icons a {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {
    .footer-social-section {
        padding: 20px 0;
    }
    
    .footer-social-icons {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social-icons a {
        width: 32px;
        height: 32px;
        font-size: 1.1em;
    }
}

/* ========== Chatbot (Perfect - No Changes) ========== */
.chatbot-widget { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 9999; 
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif; 
}

.chatbot-toggle-btn {
  width:60px; 
  height:60px; 
  background:linear-gradient(135deg,#1872de,#4285f4); 
  border:none; 
  border-radius:50%; 
  color:#fff; 
  font-size:24px; 
  cursor:pointer;
  box-shadow: 0 4px 20px rgba(24,114,222,.4); 
  transition: transform .2s ease, box-shadow .2s ease; 
  position:relative;
}

.chatbot-toggle-btn:hover { 
    transform: scale(1.1); 
    box-shadow:0 6px 25px rgba(24,114,222,.6); 
}

.notification-dot {
  position:absolute; 
  top:-5px; 
  right:-5px; 
  width:20px; 
  height:20px; 
  background:#ff4444; 
  border-radius:50%;
  display:flex; 
  align-items:center; 
  justify-content:center; 
  color:#fff; 
  font-size:11px; 
  font-weight:600;
}

.chatbot-popup {
  position: fixed; 
  bottom: 90px; 
  right: 20px; 
  width:380px; 
  height:500px; 
  background:#fff; 
  border-radius:15px;
  box-shadow:0 10px 40px rgba(0,0,0,.25); 
  transform: translateY(20px) scale(.95); 
  opacity:0; 
  visibility:hidden;
  transition: all .3s cubic-bezier(.175,.885,.32,1.275); 
  display:flex; 
  flex-direction:column; 
  overflow:hidden; 
  border:1px solid rgba(24,114,222,.2); 
  z-index: 10000;
}

.chatbot-popup.show { 
    transform: translateY(0) scale(1); 
    opacity:1; 
    visibility:visible; 
}

.chatbot-popup-header { 
    background: linear-gradient(135deg,#1872de,#4285f4); 
    color:#fff; 
    padding:15px 20px; 
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
}

.chatbot-popup-header h4 { 
    margin:0; 
    font-size:16px; 
    font-weight:600; 
    display:flex; 
    align-items:center; 
    gap:8px; 
}

.chatbot-close-btn { 
    background:none; 
    border:none; 
    color:#fff; 
    font-size:20px; 
    cursor:pointer; 
    padding:5px; 
    border-radius:50%; 
    width:30px; 
    height:30px; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
}

.chatbot-close-btn:hover { 
    background: rgba(255,255,255,.2); 
}

.chatbot-messages { 
    flex:1; 
    padding:15px; 
    overflow-y:auto; 
    background:#f8f9ff; 
    display:flex; 
    flex-direction:column; 
    gap:12px; 
}

.chat-message { 
    display:flex; 
    align-items:flex-start; 
    gap:8px; 
}

.chat-message.user { 
    justify-content:flex-end; 
}

.chat-avatar { 
    width:32px; 
    height:32px; 
    border-radius:50%; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-size:14px; 
    flex-shrink:0; 
}

.chat-message.user .chat-avatar { 
    background:#1872de; 
    color:#fff; 
    order:2; 
}

.chat-message.bot .chat-avatar { 
    background:#e0e8ff; 
    color:#1872de; 
    border:1px solid #d1d9ff; 
}

.chat-bubble { 
    max-width:75%; 
    padding:12px 15px; 
    border-radius:18px; 
    word-wrap:break-word; 
    line-height:1.4; 
    font-size:14px; 
    position:relative; 
}

.chat-message.user .chat-bubble { 
    background:#1872de; 
    color:#fff; 
    border-bottom-right-radius:5px; 
    order:1; 
}

.chat-message.bot .chat-bubble { 
    background:#fff; 
    color:#333; 
    border:1px solid #e0e8ff; 
    border-bottom-left-radius:5px; 
}

.chat-timestamp { 
    font-size:11px; 
    opacity:.7; 
    margin-top:5px; 
}

.confidence-indicator { 
    font-size:10px; 
    padding:2px 6px; 
    border-radius:8px; 
    margin-top:5px; 
    display:inline-block; 
}

.confidence-high { 
    background:#d4edda; 
    color:#155724; 
    border:1px solid #c3e6cb; 
}

.confidence-medium { 
    background:#fff3cd; 
    color:#856404; 
    border:1px solid #ffeaa7; 
}

.confidence-low { 
    background:#f8d7da; 
    color:#721c24; 
    border:1px solid #f5c6cb; 
}

.chatbot-typing { 
    display:none; 
    padding:10px 15px; 
    background: rgba(24,114,222,.1); 
    color:#1872de; 
    font-style:italic; 
    text-align:center; 
    margin:0 15px; 
    border-radius:10px; 
    font-size:13px; 
}

.chatbot-input-area { 
    display:flex; 
    width:100%; 
    gap:10px; 
    padding:15px; 
    background:#fff; 
    border-top:1px solid #e0e8ff; 
}

.chatbot-input-area input {
  flex:1; 
  padding:12px 15px; 
  border:2px solid #e0e8ff; 
  border-radius:25px; 
  outline:none; 
  font-size:14px;
  transition: border-color .2s, box-shadow .2s; 
  background:#f8f9ff;
}

.chatbot-input-area input:focus { 
    border-color:#1872de; 
    box-shadow:0 0 0 3px rgba(24,114,222,.1); 
    background:#fff; 
}

#chatbotSend {
  padding:12px 18px; 
  background:#1872de; 
  color:#fff; 
  border:none; 
  border-radius:25px; 
  cursor:pointer; 
  font-size:16px;
  transition: transform .2s ease, background-color .2s ease; 
  display:flex; 
  align-items:center; 
  justify-content:center;
}

#chatbotSend:hover:not(:disabled) { 
    background:#145cb8; 
    transform: translateY(-1px); 
}

#chatbotSend:disabled { 
    background:#ccc; 
    cursor:not-allowed; 
}

.quick-replies { 
    display:flex; 
    gap:6px; 
    margin:5px 15px 10px; 
    flex-wrap:wrap; 
}

.quick-reply {
  background: rgba(24,114,222,.1); 
  color:#1872de; 
  border:1px solid rgba(24,114,222,.2);
  padding:6px 12px; 
  border-radius:15px; 
  font-size:12px; 
  cursor:pointer; 
  transition: transform .2s, background-color .2s;
  white-space:nowrap;
}

.quick-reply:hover { 
    background: rgba(24,114,222,.2); 
    transform: translateY(-1px); 
}

.status-badge { 
    font-size:10px; 
    padding:2px 6px; 
    border-radius:10px; 
    margin-left:8px; 
}

.status-online { 
    background:#27ae60; 
    color:#fff; 
}

.status-offline { 
    background:#e74c3c; 
    color:#fff; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-section-container {
        margin-bottom: 20px;
        padding: 20px 0;
    }
    
    .category-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .category-header h4 {
        font-size: 18px;
    }
    
    .pre-footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .news-section-container {
        margin-bottom: 15px;
        padding: 15px 0;
    }
    
    .chatbot-popup { 
        width:95%; 
        height:70vh; 
        right:2.5%; 
        bottom:80px; 
    }
    
    .chatbot-toggle-btn { 
        width:55px; 
        height:55px; 
        font-size:22px; 
    }
}
