/* home-style.css*/

    :root {
      --primary: #0f2b5b;
      --primary-light: #1a4a8a;
      --secondary: #0d7c66;
      --secondary-light: #10a37f;
      --accent: #f59e0b;
      --accent-light: #fbbf24;
      --accent-dark: #d97706;
      --warm: #ef4444;
      --bg: #f0f4f8;
      --card: #ffffff;
      --text: #1e293b;
      --text-light: #64748b;
      --text-muted: #94a3b8;
      --border: #e2e8f0;
      --gradient-1: linear-gradient(135deg, #0f2b5b 0%, #1a4a8a 50%, #0d7c66 100%);
      --gradient-2: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
      --gradient-3: linear-gradient(135deg, #0d7c66 0%, #10a37f 100%);
      --shadow-sm: 0 2px 8px rgba(15,43,91,0.06);
      --shadow-md: 0 8px 30px rgba(15,43,91,0.08);
      --shadow-lg: 0 20px 60px rgba(15,43,91,0.12);
      --shadow-xl: 0 30px 80px rgba(15,43,91,0.15);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --radius-xl: 50px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Noto Sans Devanagari', 'Outfit', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

    .preloader {
      position: fixed; inset: 0; background: var(--primary);
      z-index: 99999; display: flex; align-items: center; justify-content: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    .preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
    .preloader-inner { text-align: center; color: white; }
    .preloader-spinner {
      width: 56px; height: 56px;
      border: 4px solid rgba(255,255,255,0.15);
      border-top-color: var(--accent); border-radius: 50%;
      animation: spin 0.7s linear infinite; margin: 0 auto 18px;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .preloader-text { font-size: 0.85rem; opacity: 0.6; letter-spacing: 2px; }

    /* ===== TOP BAR — PROFESSIONAL REDESIGN ===== */
    .top-bar {
      background: #081226; /* Deep Dark Professional Blue */
      color: rgba(255,255,255,0.85);
      font-size: 0.82rem;
      padding: 8px 0;
      position: relative; z-index: 1001;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .top-bar a { 
      color: rgba(255,255,255,0.7); 
      text-decoration: none; 
      transition: all 0.3s ease; 
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .top-bar a:hover { color: var(--accent-light); }
    .top-bar-divider {
      width: 1px; height: 14px; background: rgba(255,255,255,0.15);
      margin: 0 12px; display: inline-block; vertical-align: middle;
    }
    .top-bar-social a {
      width: 28px; height: 28px;
      border-radius: 6px;
      background: rgba(255,255,255,0.05);
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
      transition: all 0.3s ease;
    }
    .top-bar-social a:hover {
      background: var(--accent);
      color: #000;
      transform: translateY(-2px);
    }

    /* ===== NAVIGATION — REDESIGNED ===== */
    .main-nav {
      background: white;
      box-shadow: 0 2px 20px rgba(15,43,91,0.06);
      position: sticky; top: 0; z-index: 1000;
      padding: 10px;
      transition: box-shadow 0.3s ease;
    }
    .main-nav.scrolled { box-shadow: 0 4px 30px rgba(15,43,91,0.12); }

    .nav-brand {
      display: flex; align-items: center; gap: 14px;
      text-decoration: none;
    }
    .nav-logo {
      width: 84px;
      height: 84px;
      border-radius: 18px;
      object-fit: contain;
      background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
      padding: 5px;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .nav-logo:hover { transform: scale(1.05); }
 
    /* School Name — Word Art Style */
    .school-name-art {
      font-size: 1.65rem;
      padding:5px;
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: 1.1px;
      margin-bottom: 3px;
      background: linear-gradient(135deg, #0a1f42 0%, #1a4a8a 35%, #0d7c66 70%, #10a37f 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 2px rgba(15,43,91,0.2));
      position: relative;
    }
    
    .school-name-art::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--secondary-light), transparent);
      border-radius: 2px;
      opacity: 0.7;
    }

    /* FIX: Corrected selector to match HTML structure */
    .school-name-art .sanstha-line {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 1rem; /* Small but readable font */
      color: var(--text-muted);
      font-weight: 500;
      line-height: 1.2;
      margin-top: 4px;
      -webkit-text-fill-color: initial; /* Reset gradient text for this line */
      background: none;
    }
    .sanstha-line .dot-sep {
      width: 4px; height: 4px;
      background: var(--secondary);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .sanstha-line .sanstha-name-text {
      color: var(--secondary);
      font-weight: 600;
    }
  
    /* Menu items */
    .nav-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
    .nav-menu > li { position: relative; }
    .nav-menu > li > a {
      display: flex; align-items: center; gap: 5px;
      padding: 10px 13px; font-size: 0.84rem; font-weight: 600;
      color: var(--text); text-decoration: none; border-radius: 10px;
      transition: all 0.25s ease; white-space: nowrap;
    }
    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
      color: var(--primary); background: rgba(15,43,91,0.05);
    }
    .nav-menu > li > a.active {
      background: linear-gradient(135deg, rgba(15,43,91,0.08), rgba(13,124,102,0.08));
    }
    .nav-menu .dropdown-arrow { font-size: 0.6rem; transition: transform 0.3s ease; }
    .nav-menu li:hover .dropdown-arrow { transform: rotate(180deg); }

    .nav-dropdown {
      position: absolute; top: 100%; left: 0;
      background: white; min-width: 230px; border-radius: var(--radius-sm);
      box-shadow: var(--shadow-lg); border: 1px solid var(--border);
      padding: 6px; opacity: 0; visibility: hidden;
      transform: translateY(8px); transition: all 0.25s ease; z-index: 100;
    }
    .nav-menu li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-dropdown a {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 12px; font-size: 0.82rem; color: var(--text);
      text-decoration: none; border-radius: 8px; transition: all 0.2s ease;
    }
    .nav-dropdown a:hover {
      background: linear-gradient(135deg, rgba(15,43,91,0.06), rgba(13,124,102,0.06));
      color: var(--primary); padding-left: 16px;
    }
    .nav-dropdown a i { width: 18px; text-align: center; color: var(--secondary); font-size: 0.85rem; }

    .btn-login-nav {
      background: var(--gradient-1) !important;
      color: white !important; padding: 9px 20px !important;
      border-radius: var(--radius-xl) !important;
      font-weight: 600 !important; font-size: 0.82rem !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 4px 15px rgba(15,43,91,0.2);
    }
    .btn-login-nav:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 25px rgba(15,43,91,0.3) !important;
    }

    .mobile-toggle {
      display: none; background: none; border: none;
      font-size: 1.4rem; color: var(--primary);
      cursor: pointer; padding: 8px 10px;
      border-radius: 10px; transition: background 0.2s ease; line-height: 1;
    }
    .mobile-toggle:hover { background: rgba(15,43,91,0.05); }

    @media (max-width: 992px) {
      .mobile-toggle { display: flex; align-items: center; justify-content: center; }
      .school-name-art { font-size: 1.3rem; letter-spacing: 1.2px; }
      .nav-logo { width: 56px; height: 56px; }
      .nav-brand { gap: 12px; }

      .nav-menu-wrap {
        position: fixed; top: 0; right: 0;
        width: 280px; height: 100vh; background: white;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 2000; padding: 16px 20px 20px; overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
      }
      .nav-menu-wrap.open { transform: translateX(0); }
      .mobile-overlay {
        position: fixed; inset: 0; background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
        z-index: 1999; opacity: 0; visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
      }
      .mobile-overlay.show { opacity: 1; visibility: visible; }
      .nav-menu { flex-direction: column; gap: 0; margin-top: 8px; }
      .nav-menu > li > a {
        padding: 12px 14px; border-bottom: 1px solid var(--border); border-radius: 0;
      }
      .nav-menu > li:last-child > a { border-bottom: none; }
      .nav-dropdown {
        position: static; box-shadow: none; border: none;
        padding: 0 0 0 14px; opacity: 1; visibility: visible; transform: none;
        display: none; background: rgba(15,43,91,0.02);
        border-radius: 8px; margin: 4px 0 8px;
        border-left: 3px solid var(--secondary-light);
      }
      .nav-menu li.dropdown-open .nav-dropdown { display: block; }
      .btn-login-nav { margin-top: 12px; text-align: center; justify-content: center; display: flex !important; }
    }

    @media (max-width: 576px) {
      .nav-brand { gap: 12px; }
      .school-name-art { font-size: 1.1rem; letter-spacing: 0.8px; }
      .school-name-art::after { height: 2px; bottom: -1px; }
      /* Adjust sanstha line for mobile */
      .school-name-art .sanstha-line { font-size: 0.65rem; gap: 4px; }
      .nav-logo { width: 48px; height: 48px; border-radius: 14px; }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 560px;
      display: flex; align-items: center; overflow: hidden; background: var(--primary);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1920&q=80') center/cover no-repeat;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(15,43,91,0.92) 0%, rgba(26,74,138,0.85) 40%, rgba(13,124,102,0.75) 100%);
    }
    .hero-particles { position: absolute; inset: 0; overflow: hidden; }
    .hero-particle {
      position: absolute; width: 4px; height: 4px;
      background: rgba(255,255,255,0.25); border-radius: 50%;
      animation: floatParticle linear infinite;
    }
    @keyframes floatParticle {
      0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10% { opacity: 1; } 90% { opacity: 1; }
      100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
    }
    .hero-content { position: relative; z-index: 10; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 7px 18px; border-radius: var(--radius-xl);
      color: var(--accent-light); font-size: 0.82rem; font-weight: 600; margin-bottom: 22px;
    }
    .hero-badge .dot {
      width: 7px; height: 7px; background: var(--accent);
      border-radius: 50%; animation: pulse 2s infinite;
    }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
    .hero h1 { font-size: 3.2rem; font-weight: 900; color: white; line-height: 1.15; margin-bottom: 18px; }
    .hero h1 .highlight {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 28px; line-height: 1.8; }
    .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-hero-primary {
      background: var(--gradient-2); color: white; padding: 13px 28px;
      border-radius: var(--radius-xl); font-weight: 700; font-size: 0.92rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(245,158,11,0.3); border: none;
    }
    .btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(245,158,11,0.4); color: white; }
    .btn-hero-secondary {
      background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
      border: 2px solid rgba(255,255,255,0.18); color: white; padding: 11px 26px;
      border-radius: var(--radius-xl); font-weight: 600; font-size: 0.92rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease;
    }
    .btn-hero-secondary:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); color: white; }
    .hero-side-card { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 10; }
    .hero-floating-card {
      background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
      border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-xl);
      animation: floatCard 6s ease-in-out infinite;
    }
    @keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
    .hero-floating-card .hfc-icon {
      width: 46px; height: 46px; border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; margin-bottom: 10px;
    }
    .hero-floating-card h4 { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 2px; }
    .hero-floating-card p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

    @media (max-width: 992px) {
      .hero { min-height: 440px; } .hero h1 { font-size: 2rem; }
      .hero-desc { font-size: 0.95rem; } .hero-side-card { display: none; }
    }
    @media (max-width: 576px) {
      .hero { min-height: 380px; } .hero h1 { font-size: 1.7rem; }
      .hero-buttons { flex-direction: column; }
      .hero-buttons a { text-align: center; justify-content: center; }
      .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
    }

    /* ===== NOTICE TICKER ===== */
    .notice-bar {
      background: white;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      margin-bottom: 0;
    }
    .notice-label {
      background: var(--gradient-2); color: white;
      padding: 12px 22px; font-weight: 700;
      font-size: 0.88rem;
      display: flex; align-items: center; gap: 7px; white-space: nowrap;
    }
    .notice-label .bell { animation: shake 2s infinite; display: inline-block; }
    @keyframes shake { 0%,100% { transform: rotate(0); } 25% { transform: rotate(12deg); } 75% { transform: rotate(-12deg); } }
    .notice-scroll {
      display: flex; align-items: center;
      overflow: hidden; height: 50px; flex: 1;
    }
    .notice-track {
      display: flex; animation: scrollNotice 30s linear infinite; white-space: nowrap;
    }
    .notice-track:hover { animation-play-state: paused; }
    .notice-item {
      padding: 0 40px;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text);
      display: flex; align-items: center; gap: 8px;
    }
    .notice-item .sep { color: var(--accent); font-size: 0.75rem; }
    @keyframes scrollNotice { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    @media (max-width: 576px) {
      .notice-label { padding: 10px 12px; font-size: 0.8rem; }
      .notice-item { padding: 0 22px; font-size: 0.85rem; }
      .notice-scroll { height: 44px; }
    }

    /* ===== STATS ===== */
    .stats-section-wrapper {
      padding-top: 24px;
      padding-bottom: 8px;
      position: relative;
      z-index: 10;
    }
    .stats-bar {
      background: white; border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
    }
    .stats-bar::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: var(--gradient-2);
    }
    .stat-col { position: relative; }
    .stat-col:not(:last-child)::after {
      content: ''; position: absolute;
      right: 0; top: 18%; height: 64%;
      width: 1px; background: var(--border);
    }
    .stat-item { padding: 28px 16px; text-align: center; transition: background 0.3s ease; }
    .stat-item:hover { background: rgba(15,43,91,0.02); }
    .stat-icon {
      width: 48px; height: 48px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 12px; font-size: 1.2rem;
    }
    .stat-icon.blue { background: rgba(15,43,91,0.07); color: var(--primary); }
    .stat-icon.green { background: rgba(13,124,102,0.07); color: var(--secondary); }
    .stat-icon.amber { background: rgba(245,158,11,0.07); color: var(--accent-dark); }
    .stat-icon.red { background: rgba(239,68,68,0.07); color: var(--warm); }
    .stat-number {
      font-family: 'Outfit', sans-serif; font-size: 2.2rem;
      font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 5px;
    }
    .stat-label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }

    @media (max-width: 768px) {
      .stat-col:not(:last-child)::after { display: none; }
      .stat-item { padding: 18px 10px; }
      .stat-number { font-size: 1.7rem; }
      .stat-icon { width: 42px; height: 42px; font-size: 1rem; }
    }
    @media (max-width: 576px) {
      .stat-number { font-size: 1.5rem; }
      .stat-label { font-size: 0.75rem; }
      .stat-item { padding: 14px 6px; }
    }

    /* ===== SECTION HEADINGS ===== */
    .section-heading { text-align: center; margin-bottom: 45px; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 1rem; font-weight: 700; color: var(--secondary);
      text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
    }
    .section-tag .line { width: 28px; height: 2px; background: var(--secondary); border-radius: 2px; }
    .section-heading h2 { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
    .section-heading p { font-size: 1rem; color: var(--text-light); max-width: 540px; margin: 0 auto; }
    @media (max-width: 576px) {
      .section-heading h2 { font-size: 1.6rem; }
      .section-heading p { font-size: 0.9rem; }
    }

    /* ===== FACILITY CARDS ===== */
    .facility-card {
      background: white; border-radius: var(--radius-md);
      padding: 28px 22px; text-align: center;
      border: 1px solid var(--border);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative; overflow: hidden; height: 100%;
    }
    .facility-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: var(--gradient-1);
      transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
    }
    .facility-card:hover::before { transform: scaleX(1); }
    .facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .facility-icon-wrap {
      width: 66px; height: 66px; border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px; font-size: 1.6rem; transition: all 0.35s ease;
    }
    .facility-card:hover .facility-icon-wrap { transform: scale(1.08) rotate(-4deg); }
    .fi-blue { background: linear-gradient(135deg, rgba(15,43,91,0.07), rgba(26,74,138,0.1)); color: var(--primary); }
    .fi-green { background: linear-gradient(135deg, rgba(13,124,102,0.07), rgba(16,163,127,0.1)); color: var(--secondary); }
    .fi-amber { background: linear-gradient(135deg, rgba(245,158,11,0.07), rgba(251,191,36,0.1)); color: var(--accent-dark); }
    .fi-red { background: linear-gradient(135deg, rgba(239,68,68,0.07), rgba(239,68,68,0.1)); color: var(--warm); }
    .fi-purple { background: linear-gradient(135deg, rgba(139,92,246,0.07), rgba(139,92,246,0.1)); color: #8b5cf6; }
    .fi-teal { background: linear-gradient(135deg, rgba(20,184,166,0.07), rgba(20,184,166,0.1)); color: #14b8a6; }
    .facility-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
    .facility-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

    /* ===== PRINCIPAL CARD ===== */
    .principal-card {
      background: white; border-radius: var(--radius-md);
      overflow: hidden; border: 1px solid var(--border);
      height: 100%; transition: box-shadow 0.3s ease;
    }
    .principal-card:hover { box-shadow: var(--shadow-md); }
    .principal-banner { height: 90px; background: var(--gradient-1); position: relative; }
    .principal-avatar {
      width: 90px; height: 90px; border-radius: 50%;
      border: 4px solid white; object-fit: cover;
      position: absolute; bottom: -45px; left: 24px; box-shadow: var(--shadow-md);
    }
    .principal-body { padding: 54px 24px 24px; }
    .principal-body h5 { font-weight: 700; color: var(--primary); margin-bottom: 2px; font-size: 1.05rem; }
    .principal-body small { color: var(--secondary); font-weight: 600; font-size: 0.82rem; }
    .principal-quote {
      margin-top: 14px; font-size: 0.88rem; color: var(--text-light);
      line-height: 1.8; padding-left: 16px; border-left: 3px solid var(--accent);
    }
    @media (max-width: 576px) {
      .principal-banner { height: 70px; }
      .principal-avatar { width: 75px; height: 75px; bottom: -38px; left: 18px; }
      .principal-body { padding: 46px 18px 20px; }
    }

    /* ===== EVENT CARDS ===== */
    .event-card {
      background: white; border-radius: var(--radius-sm);
      padding: 14px 16px; display: flex; align-items: center; gap: 14px;
      border: 1px solid var(--border); transition: all 0.25s ease; margin-bottom: 10px;
    }
    .event-card:hover { box-shadow: var(--shadow-sm); border-color: var(--secondary-light); transform: translateX(4px); }
    .event-date-box {
      min-width: 55px; text-align: center;
      background: linear-gradient(135deg, rgba(13,124,102,0.07), rgba(16,163,127,0.07));
      border-radius: 10px; padding: 7px 10px;
    }
    .event-date-box .day { font-family: 'Outfit'; font-size: 1.35rem; font-weight: 800; color: var(--secondary); line-height: 1; }
    .event-date-box .month { font-size: 0.65rem; font-weight: 700; color: var(--secondary-light); text-transform: uppercase; }
    .event-info h6 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
    .event-info small { color: var(--text-muted); font-size: 0.78rem; }
    @media (max-width: 576px) {
      .event-card { padding: 10px 12px; gap: 10px; }
      .event-date-box { min-width: 48px; padding: 6px 8px; }
      .event-date-box .day { font-size: 1.15rem; }
      .event-info h6 { font-size: 0.82rem; }
    }

    /* ===== GALLERY ===== */
    .gallery-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 200px); gap: 14px;
    }
    .gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item:nth-child(1) { grid-row: span 2; }
    .gallery-item:nth-child(4) { grid-row: span 2; }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(15,43,91,0.75), transparent 60%);
      opacity: 0; transition: opacity 0.3s ease;
      display: flex; align-items: flex-end; padding: 16px;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span { color: white; font-weight: 600; font-size: 0.85rem; }
    .gallery-overlay i { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: white; font-size: 1.6rem; opacity: 0.7; }
    @media (max-width: 992px) { .gallery-grid { grid-template-rows: repeat(2, 170px); gap: 10px; } }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 160px); }
      .gallery-item:nth-child(1) { grid-row: span 1; }
      .gallery-item:nth-child(4) { grid-row: span 1; }
    }
    @media (max-width: 400px) { .gallery-grid { grid-template-rows: repeat(3, 130px); gap: 8px; } }

    /* Lightbox */
    .lightbox {
      position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 10000;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    }
    .lightbox.show { opacity: 1; visibility: visible; }
    .lightbox img {
      max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5); transform: scale(0.92); transition: transform 0.35s ease;
    }
    .lightbox.show img { transform: scale(1); }
    .lightbox-close {
      position: absolute; top: 16px; right: 20px; background: rgba(255,255,255,0.1);
      border: none; color: white; font-size: 1.6rem; width: 46px; height: 46px;
      border-radius: 50%; cursor: pointer; transition: background 0.2s ease;
      display: flex; align-items: center; justify-content: center;
    }
    .lightbox-close:hover { background: rgba(255,255,255,0.2); }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1.3rem;
      width: 46px; height: 46px; border-radius: 50%; cursor: pointer; transition: background 0.2s ease;
      display: flex; align-items: center; justify-content: center;
    }
    .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
    .lightbox-prev { left: 16px; } .lightbox-next { right: 16px; }

    /* ===== TESTIMONIALS ===== */
    .testimonial-section { background: var(--gradient-1); }
    .testimonial-card {
      background: rgba(255,255,255,0.07); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
      padding: 26px; height: 100%; transition: all 0.3s ease;
    }
    .testimonial-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
    .testimonial-stars { color: var(--accent); margin-bottom: 14px; font-size: 0.85rem; }
    .testimonial-text { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 10px; }
    .testimonial-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); }
    .testimonial-author h6 { color: white; font-weight: 600; margin-bottom: 0; font-size: 0.88rem; }
    .testimonial-author small { color: rgba(255,255,255,0.45); font-size: 0.75rem; }
    @media (max-width: 576px) { .testimonial-card { padding: 20px; } .testimonial-text { font-size: 0.85rem; } }

    /* ===== ACHIEVEMENTS ===== */
    .achievement-card {
      background: white; border-radius: var(--radius-sm); padding: 20px;
      display: flex; gap: 14px; border: 1px solid var(--border); transition: all 0.3s ease; height: 100%;
    }
    .achievement-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .ach-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
    .achievement-card h6 { font-weight: 700; font-size: 0.9rem; color: var(--text); margin-bottom: 3px; }
    .achievement-card p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

    /* ===== CONTACT ===== */
    .contact-info-card { background: var(--gradient-1); border-radius: var(--radius-md); padding: 30px; color: white; height: 100%; }
    .contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
    .contact-item:last-child { margin-bottom: 0; }
    .contact-icon-box { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
    .contact-item h6 { font-weight: 600; margin-bottom: 2px; font-size: 0.9rem; }
    .contact-item p { font-size: 0.83rem; opacity: 0.75; margin: 0; }
    .map-card { background: white; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); height: 100%; }
    .map-card-header { padding: 14px 20px; border-bottom: 1px solid var(--border); font-weight: 700; color: var(--primary); font-size: 0.92rem; display: flex; align-items: center; gap: 8px; }

    /* ===== FOOTER ===== */
    .main-footer { background: #071525; color: rgba(255,255,255,0.65); padding-top: 50px; }
    .footer-brand h4 { font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 3px; }
    .footer-brand small { color: var(--accent); font-weight: 600; font-size: 0.82rem; }
    .footer-brand p { font-size: 0.85rem; margin-top: 14px; line-height: 1.8; }
    .footer-social { display: flex; gap: 8px; margin-top: 16px; }
    .footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.95rem; transition: all 0.3s ease; }
    .footer-social a:hover { background: var(--accent); border-color: var(--accent); color: white; transform: translateY(-2px); }
    .footer-heading { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
    .footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 3px; background: var(--accent); border-radius: 3px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; transition: all 0.25s ease; }
    .footer-links a:hover { color: var(--accent); padding-left: 4px; }
    .footer-links a i { font-size: 0.6rem; color: var(--secondary-light); }
    .footer-newsletter p { font-size: 0.85rem; margin-bottom: 14px; }
    .footer-newsletter-form { display: flex; gap: 6px; }
    .footer-newsletter-form input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 11px; padding: 9px 14px; color: white; font-size: 0.85rem; outline: none; transition: border-color 0.3s ease; }
    .footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.25); }
    .footer-newsletter-form input:focus { border-color: var(--accent); }
    .footer-newsletter-form button { background: var(--accent); border: none; color: var(--primary); width: 42px; height: 42px; border-radius: 11px; cursor: pointer; transition: all 0.25s ease; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; }
    .footer-newsletter-form button:hover { background: var(--accent-light); transform: scale(1.05); }
    .footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.05); padding: 18px 0; margin-top: 36px; font-size: 0.8rem; text-align: center; }
    .footer-bottom-bar a { color: var(--accent); text-decoration: none; }
    @media (max-width: 576px) { .main-footer { padding-top: 36px; } .footer-brand p { font-size: 0.82rem; } .contact-info-card { padding: 22px; } }

    .back-to-top {
      position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
      border-radius: 50%; background: var(--gradient-1); color: white;
      border: none; font-size: 1rem; cursor: pointer;
      box-shadow: 0 6px 20px rgba(15,43,91,0.3);
      opacity: 0; visibility: hidden; transform: translateY(16px);
      transition: all 0.3s ease; z-index: 900;
      display: flex; align-items: center; justify-content: center;
    }
    .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(15,43,91,0.4); }
    .bg-pattern { background-image: radial-gradient(circle at 1px 1px, rgba(15,43,91,0.025) 1px, transparent 0); background-size: 28px 28px; }
    
    /* Slider CSS (Add to home-style.css or here) */
    .slider-img { height: 80vh; min-height: 500px; object-fit: cover; filter: brightness(0.6); /* फोटो थोडा डार्क करण्यासाठी जेणेकरून टेक्स्ट दिसेल */ }
    .carousel-caption { bottom: 0; top: 0; padding: 20px; }
    .text-shadow { text-shadow: 2px 2px 8px rgba(0,0,0,0.8); }
    .hero-badge { background: rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 20px; backdrop-filter: blur(5px); display: inline-block; color: white; border: 1px solid rgba(255,255,255,0.3); }
    .hero-badge .dot { display: inline-block; width: 10px; height: 10px; background: #25D366; border-radius: 50%; margin-right: 8px; animation: pulse 2s infinite; }
    @media(max-width: 768px) { .slider-img { height: 60vh; } .display-3 { font-size: 2.2rem; } }
    
    /* प्रश्न विचारण्यासाठी बटण (Chatbot / FAQ Widget)*/
/* Chatbot CSS */
    .chat-btn { position: fixed; bottom: 90px; right: 25px; background: #0d6efd; color: #fff; width: 60px; height: 60px; border-radius: 50%; border: none; box-shadow: 0 5px 15px rgba(13,110,253,0.4); z-index: 1000; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; }
    .chat-btn:hover { transform: scale(1.1); background: #0b5ed7; }
    .chat-window { position: fixed; bottom: 160px; right: 25px; width: 340px; background: #fff; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 1000; display: none; overflow: hidden; border: 1px solid #eee; }
    .chat-header { background: linear-gradient(135deg, #0d6efd, #0a58ca); color: #fff; padding: 15px; display: flex; justify-content: space-between; align-items: center; }
    .chat-header button { background: none; border: none; color: white; cursor: pointer; font-size: 1.2rem; }
    .chat-body { padding: 15px; height: 380px; overflow-y: auto; background: #f8f9fa; scroll-behavior: smooth; }
    .bot-msg { background: #e9ecef; color: #333; padding: 10px 15px; border-radius: 15px; border-top-left-radius: 0; font-size: 0.9rem; margin-bottom: 10px; width: fit-content; max-width: 90%; }
    .user-msg { background: #0d6efd; color: #fff; padding: 10px 15px; border-radius: 15px; border-top-right-radius: 0; font-size: 0.9rem; margin-bottom: 10px; margin-left: auto; width: fit-content; max-width: 90%; text-align: right; }
