/* ===============================
   AAPKA RESULT PRO – ADVANCED UI
================================= */

:root {
  --primary-color: #2563eb;
  --danger-color: #dc2626; /* Accessibility: Darker red for better contrast */
  --text-dark: #1e293b;
  --header-logo-color: #d32f2f; /* Accessibility: Passes 4.5:1 contrast on light bg */
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html,
body{
  font-family:'Inter', sans-serif;
  background:#f8fafc;
  color: var(--text-dark);
  overflow-x: hidden; /* वेबसाइट को लेफ्ट-राइट बाहर जाने से रोकेगा */
  width: 100%;
  max-width: 100vw; /* Strict width control for mobile browsers */
}

/* Accessibility: कीबोर्ड यूज़र्स के लिए फोकस आउटलाइन */
a:focus-visible, button:focus-visible {
  outline: 2px dashed var(--danger-color);
  outline-offset: 4px;
}

/* HEADER */
.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
background: transparent;
box-shadow: none;
position: relative;
z-index: 10;
}

.menu{
font-size:26px;
cursor:pointer;
background: transparent;
border: none;
color: var(--text-dark);
}

#navMenu{
position:fixed; /* Absolute को Fixed से बदलें, यह 100% काम करेगा */
top:65px;
right:0;
background:rgb(255, 255, 255);
width:150px;
flex-direction:column;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease-out, visibility 0.3s;
  display: flex;
  z-index: 1000; /* मेनू को हमेशा कंटेंट के ऊपर दिखाने के लिए */
}

#navMenu a{
padding:5px;
text-decoration:none;
color:rgb(0, 0, 0);
display:block;
border-bottom:1px solid #eee;
}

#navMenu.open {
  transform: translateX(0);
  visibility: visible;
}

#navMenu a:hover{
background:#f5f5f5;
}
.logo{
    font-size: 35px; /* मोबाइल पर लोगो टेक्स्ट को स्क्रीन के अंदर रखने के लिए */
    font-weight: bold;
    color: var(--header-logo-color);
}

/* डेस्कटॉप और बड़ी स्क्रीन पर लोगो को वापस 35px करने के लिए */
@media (min-width: 768px) {
  .logo {
    font-size: 35px; 
  }
}

.gradient{
background: linear-gradient(90deg, #6200ea, #be123c, #b91c1c); /* Darker colors for white bg */
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight:700;
}

/* DROPDOWN MENU */
.dropdown-content {
  display: none;
  background-color: #f8fafc;
}
.dropdown-content a {
  padding-left: 25px !important; /* ड्रॉपडाउन लिंक्स को थोड़ा अंदर करने के लिए */
}
.dropdown-content.show {
  display: block; /* जब JS से .show क्लास जुड़ेगी, तब यह दिखेगा */
}

h1{
margin-top: 20px;
font-size:22px;
line-height:1.2;
text-align:center;
font-weight:700;
}

/* CONTAINER */
.main-container{
  max-width:1200px;
  margin:10px auto;
  padding:0 10px;
}

/* JOB CARDS */
.job-cards{
  display:grid;
  grid-template-columns:repeat(2, 1fr); /* Mobile ke liye 1 line mein 1 box */
  gap:20px;
  margin-top: 25px;
  margin-bottom:40px;
}

/* Tablets ke liye 1 line mein 2 boxes */
@media (min-width: 576px) {
  .job-cards {
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Desktop aur bade screens ke liye 1 line mein 4 boxes */
@media (min-width: 992px) {
  .job-cards {
    grid-template-columns:repeat(4, 1fr);
  }
}

/* Base styling for Job Cards */
.job-card {
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15.5px;
  line-height: 1.4;
}

/* Styles for colored job cards */
.job-card.lightred { background: linear-gradient(135deg, #dc2626, #991b1b); } /* Darkened for accessibility */
.job-card.lightorange { background: linear-gradient(135deg, #c2410c, #9a3412); }
.job-card.lightpurple { background: linear-gradient(135deg, #6d28d9, #4c1d95); }
.job-card.darkblue { background: linear-gradient(135deg, #2563eb, #1e40af); }
.job-card.darkgreen { background: linear-gradient(135deg, #16a34a, #14532d); }
.job-card.lightsky { background: linear-gradient(135deg, #0284c7, #075985); }
.job-card.darkmaroon { background: linear-gradient(135deg, #c53030, #7f1d1d); }

.job-card:hover{
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  color:white;
  transform:translateY(-8px) scale(1.02);
}

/* GRID SECTIONS */
.grid{
  display:grid;
  grid-template-columns: 1fr; /* Mobile ke liye 1 line mein 1 box */
  gap:30px;
  margin-bottom:20px;
}

/* Desktop aur Tablet ke liye 1 line mein 2 boxes */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.box{
  background:#ffffff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  border-top: 5px solid #2563eb; /* Default blue border */
  transition:all 0.3s ease;
}

.box.red { border-top-color: #dc2626; }
.box.blue { border-top-color: #2563eb; }

.box:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(37,99,235,0.15);
}

.box h2{
  text-align:center;
  margin-bottom:20px;
  font-size:1.3rem;
  color:#1e293b;
  font-weight: 800;
  border-bottom: 2px dashed #e2e8f0;
  padding-bottom: 10px;
}

.box ul{
  list-style:none;
}

.box ul li{
  margin:8px 0;
}

.box ul li a{
  text-decoration:none;
  color:#2563eb;
  font-weight:600;   /* 🔥 ye line add karo */
  font-size:15px;    /* optional */
  transition:0.3s;
}

.box ul li a:hover{
  color: var(--danger-color);
  padding-left:5px;
}

/* A utility class for important red text */
.text-important {
  color: var(--danger-color);
}

/* DOTS  ke liye hai  */

.box ul{
  list-style:none;
  padding-left:0;
}

.box ul li{
  position:relative;
  padding-left:18px;
  margin:8px 0;
}

.box ul li::before{
  content:"";
  width:6px;
  height:6px;
  background:#000000;
  border-radius:50%;
  position:absolute;
  left:0;
  top:8px;
}


/* VIEW MORE BUTTON */
.view-more{
  text-align:center;
  margin-top:15px;
}

.view-more a{
  display:inline-block;
  padding:8px 18px;
  background:linear-gradient(135deg,#2563eb,#1e3a8a);
  color:white;
  border-radius:25px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

.view-more a:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(37,99,235,0.4);
}

/* ABOUT US  MORE BUTTON */
.about-more{
  text-align:center;
  margin-top:0.2px;
  margin-bottom:15px;
}

.about-more a{
  display:inline-block;
  padding:15px 20px;
  width:90%;
  max-width:300px;
  background:linear-gradient(135deg,#f10386,#030303);
  color:white;
  border-radius:15px;
  text-decoration:none;
  font-size:20px;
  font-weight:700;
  transition:0.3s;
}

.about-more a:hover{
  transform:translateY(0px);
  box-shadow:0 8px 20px rgba(24, 26, 29, 0.4);
}


/* FOOTER */
.footer {
  background: #0d0e11;
  color: #ffffff; /* Accessibility: Better contrast ratio for Google PageSpeed */
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap; /* लिंक्स के शब्दों को टूटने से रोकेगा */
}

.footer a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

/* ===============================
   🔥 MODERN 2026 UI job details (BLUE & PURPLE) 🔥
=================================*/

.job-top-content {
  max-width: 1000px;
  margin: 40px auto 30px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}
.job-top-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}
.job-title {
  font-size: 34px;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.post-date {
  font-size: 14px;
  color: #9333ea;
  margin-bottom: 25px;
  font-weight: 700;
  background: #f3e8ff;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  border: none;
}
.job-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  font-weight: 500;
}
.job-detail-container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.job-detail-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}
.job-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media(max-width: 768px) {
  .job-detail-grid { grid-template-columns: 1fr; }
  .job-top-content, .job-detail-container, .vacancy-box { padding: 25px; }
  .job-title { font-size: 28px; }
}
.job-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.job-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(147, 51, 234, 0.15);
  border-color: #d8b4fe;
}
.job-box-title {
  font-weight: 700;
  font-size: 20px;
  color: #2563eb;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.job-box-title::before {
  content: '';
  display: inline-block;
  width: 8px; 
  height: 24px;
  background: linear-gradient(180deg, #2563eb, #9333ea);
  border-radius: 10px;
}
.job-list { list-style: none; padding: 0; }
.job-list li {
  margin: 12px 0;
  font-size: 15px;
  color: #475569;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
  font-weight: 600;
}
.job-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #9333ea;
  font-weight: bold;
}

/* Strips */
.job-notice-strip1, .job-notice-strip2, .job-notice-strip3, .job-notice-strip {
  margin-top: 30px;
  padding: 16px 25px;
  color: white;
  font-weight: 700;
  border-radius: 15px 15px 0 0;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-align: center;
  background: linear-gradient(135deg, #2563eb, #9333ea);
}

.job-notice-extra {
  margin-top: 0;
  margin-bottom: 0;
  padding: 20px 25px;
  background: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-top: none;
  font-weight: 600;
  line-height: 1.7;
}
.job-notice-extra:last-child {
  border-radius: 0 0 15px 15px;
  margin-bottom: 30px;
}

/* Tables */
.vacancy-box {
  max-width: 1000px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  transition: all 0.3s ease;
}
.vacancy-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}
.vacancy-title {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
  color: #1e293b;
  text-align: center;
}
.vacancy-table, .apply-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.vacancy-table th, .apply-table th {
  background: #f8fafc;
  color: #1e293b;
  padding: 18px;
  font-weight: 700;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
}
.vacancy-table td, .apply-table td {
  padding: 16px;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 600;
  text-align: center;
  background: #ffffff;
  transition: background 0.3s ease;
}
.apply-table th { text-align: left; width: 45%; }
.vacancy-table tr:hover td, .apply-table tr:hover td { background: #f8fafc; }
.vacancy-table tr:last-child td, .apply-table tr:last-child td { border-bottom: none; }
.vacancy-table th:last-child, .vacancy-table td:last-child, .apply-table th:last-child, .apply-table td:last-child { border-right: none; }

/* Next-Gen Button */
.click-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  background: linear-gradient(135deg, #2563eb, #9333ea);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.click-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #7e22ce);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

/* ===== ABOUT PAGE ===== */

.about-section{
  padding:60px 20px;
  background:linear-gradient(135deg,#f8fafc,#e0f2fe);
}

.about-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.about-container h2{
  font-size:32px;
  margin-bottom:20px;
  color:#1e3a8a;
}

.about-container p{
  font-size:16px;
  color:#334155;
  max-width:750px;
  margin:0 auto 40px;
  line-height:1.7;
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.about-card{
  background:white;
  padding:25px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.about-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.about-card h3{
  margin-bottom:10px;
  color:#0f172a;
}

.about-card p{
  font-size:14px;
  color:#475569;
}

.about-section{
max-width:900px;
margin:40px auto;
padding:25px;
background:#ffffff;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
line-height:1.7;
}

.about-section h1{
text-align:center;
color:#c62828;
margin-bottom:20px;
}

.about-section h2{
margin-top:20px;
color:#0b3c91;
}

.about-section ul{
margin-left:20px;
}

/* ===== WHATSAPP PAGE ===== */

.whatsapp-section{
  padding:60px 20px;
  background:linear-gradient(135deg,#f8fafc,#e0f2fe);
}

.whatsapp-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.whatsapp-container h2{
  font-size:32px;
  margin-bottom:20px;
  color:#1e3a8a;
}

.whatsapp-container p{
  font-size:16px;
  color:#334155;
  max-width:750px;
  margin:0 auto 40px;
  line-height:1.7;
}

.whatsapp-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.whatsapp-card{
  background:rgb(221, 204, 218);
  padding:25px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.whatsapp-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.whatsapp-card h3{
  margin-bottom:15px;
  color:#0a46d3;
}

.whatsapp-card p{
  font-size:19px;
  color:#475569;
}

/* WHATSAPP  MORE BUTTON */
.whatsapp-more{
  text-align:center;
  margin-top:0.2px;
  margin-bottom:15px;
}

.whatsapp-more a{
  display:inline-block;
  padding:15px 20px;
  width:90%;
  max-width:300px;
  background:linear-gradient(135deg,#181d19,#069726);
  color:white;
  border-radius:15px;
  text-decoration:none;
  font-size:20px;
  font-weight:700;
  transition:0.3s;
}

.whatsapp-more a:hover{
  transform:translateY(1px);
  box-shadow:0 8px 20px rgba(24, 26, 29, 0.4);
}

/* home contant ke liye */
.home-content{
max-width:1000px;
margin:07px auto;
padding:20px;
background:white;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
line-height:1.7;
}

.home-content h2{
color:#0b3c91;
margin-bottom:10px;
}

.home-content h3{
margin-top:20px;
color:#c0392b;
}

.home-content ul{
margin-left:20px;
}

.social-follow{
text-align:center;
background:#ffffff;
padding:30px;
margin:30px auto;
max-width:1000px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.social-follow h2{
margin-bottom:10px;
color:#0b3c91;
}

.social-follow p{
margin-bottom:20px;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-buttons span {
display:inline-block;
padding:12px 25px;
color:#ffffff;
text-decoration:none;
border-radius:6px;
font-weight:700;
min-width: 140px;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
}

.social-buttons span:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.facebook{
background:#0077b5; /* Official Facebook color passes contrast */
}

.instagram{
background:#c13584; /* Official Instagram color */
}

.telegram{
background:#0077b5; /* Official Telegram color */
}

.youtube{
background:#cc0000; /* Darker YouTube red to pass 4.5:1 contrast */
}

.post-image{
  width:100%;
  max-height: 300px;
  max-width:650px;
  height:auto;
  display:block;
  margin: auto;
  margin-bottom: 10px;
}

 /* Mock test Button */
        .cta-container { text-align: center; margin: 30px 0; padding: 0 20px; }
        .btn-start { background: #e60000; color: rgb(255, 255, 255); border: none; padding: 16px 20px; width: 100%; border-radius: 10px; font-size: 1.2rem; font-weight: bold; cursor: pointer; box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3); transition: 0.3s; animation: pulse 2s infinite; }
        .btn-start:hover { background: #e60000; transform: translateY(-2px); }

        /* Button Animation */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 77, 77, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
        }

        /* SSC GD Mock test Button */
        .btn-start-green { background: #28a745; color: rgb(255, 255, 255); border: none; padding: 16px 20px; width: 100%; border-radius: 10px; font-size: 1.2rem; font-weight: bold; cursor: pointer; box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3); transition: 0.3s; animation: pulse-green 2s infinite; }
        .btn-start-green:hover { background: #218838; transform: translateY(-2px); }

        /* Green Button Animation */
        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
        }

/* ===============================
   GK REELS INLINE WIDGET
================================= */
.reels-wrapper {
    max-width: 500px;
    margin: 10px 15px 30px 15px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
@media (min-width: 530px) { .reels-wrapper { margin: 10px auto 30px auto; } }

.reels-header {
    position: absolute; top: 0; left: 0; width: 100%; padding: 15px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    display: flex; justify-content: space-between; align-items: center; z-index: 10; pointer-events: none;
}
.reels-container {
    height: 400px; /* Fixed height for homepage */
    overflow-y: scroll; scroll-snap-type: y mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
}
.reels-container::-webkit-scrollbar { display: none; }

.gk-card {
    height: 400px; width: 100%; scroll-snap-align: start; 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    padding: 20px; position: relative; color: #fff;
}
.gk-bg-1 { background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%); color: #333; }
.gk-bg-2 { background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); color: #222; }
.gk-bg-3 { background: linear-gradient(120deg, #f6d365 0%, #fda085 100%); color: #333; }
.gk-bg-4 { background: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%); color: #222; }
.gk-bg-5 { background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); color: #222; }

.gk-fact-box { background: rgba(255, 255, 255, 0.95); padding: 25px 20px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); width: 95%; text-align: center; }
.gk-q { font-size: 1.15rem; font-weight: 800; margin-bottom: 20px; color: #111; line-height: 1.4; }
.gk-ans-container { animation: fadeIn 0.5s; }
.gk-ans { font-size: 1.25rem; font-weight: 800; color: #dc2626; margin-bottom: 8px; }
.gk-desc { font-size: 0.9rem; color: #555; font-weight: 600; line-height: 1.4; }
.gk-btn-reveal { background: #2563eb; color: white; border: none; padding: 10px 22px; font-size: 0.95rem; font-weight: bold; border-radius: 25px; cursor: pointer; box-shadow: 0 4px 10px rgba(37,99,235,0.4); }
.gk-btn-reveal:active { transform: scale(0.95); }

.gk-hint { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; opacity: 0.7; animation: bounce 1.5s infinite; color: #444; font-size: 0.85rem; font-weight: bold; }
.gk-hint svg { width: 20px; height: 20px; margin-bottom: 2px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -8px); } }

/* ===============================
   SHORT NOTES HUB (HOME PAGE)
================================= */
.short-notes-section {
    max-width: 1200px; margin: 25px auto 40px auto; padding: 0 15px;
}
.short-notes-section .section-title {
    text-align: center; margin-bottom: 20px;
}
.notes-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px;
}
@media (min-width: 768px) {
    .notes-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.note-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 22px 10px; border-radius: 16px; text-decoration: none; color: #fff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; position: relative; overflow: hidden;
}
.note-card::after {
    content: 'Read Now ➔'; position: absolute; bottom: -30px; left: 0; width: 100%;
    background: rgba(0,0,0,0.2); padding: 5px 0; font-size: 0.8rem; font-weight: bold;
    transition: 0.3s; opacity: 0;
}
.note-card:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); }
.note-card:hover::after { bottom: 0; opacity: 1; }

.n-icon { font-size: 2.5rem; margin-bottom: 10px; display: block; filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2)); }
.note-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }

/* Gradients */
.n-history { background: linear-gradient(135deg, #f59e0b, #d97706); }
.n-science { background: linear-gradient(135deg, #10b981, #059669); }
.n-polity { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.n-geography { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

section {
  background: #fff;
  padding: 15px;
  margin: 15px 0;
  border-radius: 10px;
}

h2 {
  color: #2b6cb0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid #ddd;
  padding: 8px;
}

.faq-item {
  margin-bottom: 10px;
}

section {
  background: #ffffff;
  padding: 15px;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

h2 {
  color: #2b6cb0;
  font-weight: 700;
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  font-weight: 600;
  margin: 8px 0;
}

li::before {
  content: "✔ ";
  color: green;
}

section:hover {
  transform: translateY(-2px);
  transition: 0.3s;
}

.related-links a {
  display: block;
  text-decoration: none;
  background: #f1f5ff;
  color: #2b6cb0;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.related-links a:hover {
  background: #2b6cb0;
  color: #fff;
}
