body{
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg,#edeef1,#eeeeef);
    padding:40px 10px;
}

.section{
    max-width:900px;
    margin:auto;
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.filter-btn{
padding:8px 15px;
border:none;
border-radius:20px;
background:#e0e0e0;
cursor:pointer;
margin:5px;
transition:0.3s;
}

.filter-btn:hover{
background:#c7c7c7;
}
.card-scroll {
  max-height: 2000px;   /* 20 cards approx fit */
  overflow-y: auto;
  padding-right: 5px;
}
.card-scroll::-webkit-scrollbar {
  width: 6px;
}

.card-scroll::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.card-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.running-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 20px 0;
}
.highlight-text{
  color: #ff0000;          /* red highlight */
  font-weight: bold;
  font-size: 18px;
}
/* Heading */
.edu-title {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  color: red;
  margin-bottom: 15px;
}

/* Grid Section */
.edu-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Box Design */
.edu-box {
  text-align: center;
  padding: 15px;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hover Effect */
.edu-box:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Gradient Colors */
.edu1 {
  background: linear-gradient(135deg, #a2523e, #feb47b);
}

.edu2 {
  background: linear-gradient(135deg, #de0ab8, #185a9d);
}

.edu3 {
  background: linear-gradient(135deg, #f7971e, #0b1d80);
}

.edu4 {
  background: linear-gradient(135deg, #730fcb, #941752);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .edu-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .edu-box {
    font-size: 14px;
    padding: 12px;
  }
}

.run-box {
  text-align: center;
  padding: 12px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  font-size: 22px;
  transition: 0.3s;
}
.fixed-para {
  width: 370px;     /* Fix width */
  height: 100px;    /* Fix height */
  ; /* Extra text cut ho jayega */
  text-align: justify;
  border: none solid #ccc;
}

.ticker {
  color: #000;
  padding: 8px;
  margin-top: 10px;
  font-weight: bold;
}
.ticker marquee {
  font-size: 14px;
  
}

.run-box:hover {
  transform: scale(1.05);
}
.green { background: #20dc29; }
.blue { background: #0033cc; }
.red { background: #cc0000; }
.black { background: #3b1c1c; }
.maroon { background: #8b0000; }
.darkgreen { background: #07e607; }
.pink { background: #ff66cc; }
.sky { background: #3399ff; }
@media (max-width: 768px) {
  .running-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

.filter-btn.active{
background:#7b1e1e;
color:white;
}
/* Header */
.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:10px;
}

.left{
    display:flex;
    align-items:center;
    gap:10px;
}

.icon{
    font-size:25px;
}

/* Filter Buttons */
.filters{
    display:flex;
    gap:5px;
    margin-top:10px;
}



/* Job Card */
.job-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border: 3px solid black;
    border-radius:10px;
    margin-bottom:18px;
    background:#f7f4f4;
    transition:0.3s;
    cursor: pointer;
}

.job-card:hover{
    background: #c2d5d8;
    border-color: #8f0606;
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}


.job-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.job-left img{
    width:60px;
    height:60px;
    border-radius:10px;
}


/* Right Side Button Column */
.action-column{
    display:flex;
    flex-direction:column;
    gap:8px;
    align-items:flex-end;
}

/* Small Buttons */
.mini-btn{
    border:none;
    padding:6px 12px;
    border-radius:6px;
    color:white;
    font-size:12px;
    cursor:pointer;
    font-weight:bold;
    width:130px;
}
/* Middle Info Section */
.job-info{
    display:flex;
    flex-direction:column;
    gap:5px;
    font-size:14px;
    min-width:220px;
}

.last-date{
    color:#dc2626;
    font-weight:bold;
}

.job-info p{
    margin:0;
}

.job-info strong{
    color:#1e3a8a;
}

.blue{ background:#2563eb; }
.green{ background:#16a34a; }
.purple{ background:#7c3aed; }

.mini-btn:hover,
.apply:hover{
    opacity:0.85;
}

.main-header{
    background: linear-gradient(135deg,#7f1d1d,#581919);
    color:white;
    text-align:center;
    
}


.main-header h1{
    margin: 2px;
    font-size:50px;
    letter-spacing:1px;
}


.main-header h5{
    margin:0;
    font-size:20px;
    letter-spacing:1px;
}
.main-header p{
    margin:7;
    font-size:25px;
    letter-spacing:1px;
    font-weight:bold;
    color: #000;
}
.rb-break-container{
    display:flex;
    align-items:center;
    overflow:hidden;
    border:2px solid #e5e5e5;
    border-radius:8px;
    background:#fff;
}

.rb-break-label{
    background:#d60000;
    color:#fff;
    padding:12px 18px;
    font-weight:bold;
    white-space:nowrap;
}

.rb-break-scroll{
    position:relative;
    overflow:hidden;
    flex:1;
}

.ticker-track{
    display:inline-block;
    white-space:nowrap;
    padding-left:100%;
    animation: scroll-left 80s linear infinite; /* 🔥 SPEED CONTROL */
}

.ticker-track a{
    margin-right:30px;
    color:#000080;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}
.ticker-track a:hover{
    color:#d60000;
    text-decoration:underline;
}

.ticker-track:hover{
    animation-play-state: paused;
}

@keyframes scroll-left{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-100%); }
}

.header {
    background: linear-gradient(135deg,#7f1d1d,#5d0c1a);
    padding: 20px 0;
    margin: 10;

    color: white;
}

.header-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
}



.center {
    flex: 9;
    text-align: center;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}
.tagline{
    margin-top:8px;
    font-size:16px;
    opacity:0.9;
}

.apply{
    border:none;
    padding:10px 18px;
    border-radius:8px;
    color:white;
    font-weight:bold;
    cursor:pointer;
}

.navbar {
    background: #070808;
    text-align: center;
    padding: 10px;
}



.navbar a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    color: yellow;
}

.footer {
    width: 100%;
    max-width: 900px;   /* Same size as notice board */
    
    background: #fdfdff;
    color: rgb(165, 24, 24);
    padding: 0px;
    border-radius: 10px;
    border-color: #3b1c1c;
}

.footer-container {
    display: flex;
    
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer h4 {
    color: #ef4444;
    text-align: justify;
   
    margin-bottom: 10px;
}

.footer a {
    color: #a62121;
    text-decoration: none;
    display: block;
   
    margin-bottom: 5px;
}

.footer a:hover {
    color: #ef4444;
}

.green{ background:#16a34a; }
.orange{ background:#f97316; }
.blue{ background:#2563eb; }

.channel{ color: #07af1b;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: bold;
font-size: 20px; }
.hide{
    display:none;
}
.wrapper{
    max-width:1024px;
    width: 100%;
    margin:auto;
    background:#fdfdff;
}

body{
    overflow-x:hidden;
    margin:0;
}
