/* ========= PRO Neo-Modern — Green & White ========= */
/* (This is the same style.css provided earlier, optimized for Option A) */

/* Variables */
:root{
  --bg: #ffffff;
  --muted-bg: #f3f7f4;
  --accent: #0a7d42;
  --accent-400:#20a86f;
  --text: #06221a;
  --muted: #6b7280;
  --card: #ffffff;
  --radius: 12px;
  --shadow-lg: 0 14px 40px rgba(6,28,20,0.08);
  --shadow-sm: 0 6px 18px rgba(6,28,20,0.06);
  --max-width: 1180px;
  --transition: 220ms cubic-bezier(.2,.9,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background: linear-gradient(180deg,var(--muted-bg), #fff);
  -webkit-font-smoothing:antialiased;
  line-height:1.45;
}

/* Container */
.container{max-width:var(--max-width); margin:0 auto; padding:0 20px}

/* Utility links focus */
a{color:inherit; text-decoration:none}
a:focus{outline: 3px solid rgba(10,125,66,0.15); outline-offset:4px}

/* Header top row */
.site-header{position:sticky; top:0; z-index:120}
.top-row{background:linear-gradient(90deg,var(--accent) 0%, var(--accent-400) 100%); color:white}
.top-inner{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:12px 0}
.brand-link{display:flex; align-items:center; gap:14px}
.logo{width:68px; height:68px; object-fit:contain; border-radius:10px; background: rgba(255,255,255,0.08); padding:8px; transition:transform var(--transition)}
.logo:hover{transform:translateY(-5px)}
.brand-text .brand-title{font-weight:700; font-size:18px}
.brand-text .brand-sub{font-size:13px; opacity:0.92}
.contact-row{display:flex; gap:14px; align-items:center; font-size:14px}

/* Nav row */
.nav-row{background:#fff; box-shadow:var(--shadow-sm)}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:20px; padding:8px 0}
.nav-main ul{display:flex; gap:6px; align-items:center; list-style:none; margin:0; padding:0}
.nav-main li{position:relative}
.nav-main a{display:block; padding:10px 14px; color:var(--accent); font-weight:600; border-radius:8px; transition:background var(--transition), color var(--transition)}
.nav-main a:hover, .nav-main a:focus{background:linear-gradient(90deg,var(--accent-400), rgba(10,125,66,0.06)); color:#fff}

/* dropdown */
.has-drop > a::after{content:" ▾"; font-size:12px; margin-left:6px; color:var(--accent)}
.drop{position:absolute; left:0; top:46px; min-width:200px; background:var(--card); border-radius:10px; box-shadow:var(--shadow-lg); padding:8px 0; display:none}
.drop a{padding:10px 16px; color:var(--text); display:block}
.drop a:hover{background:var(--muted-bg)}
.has-drop:focus-within .drop,
.has-drop:hover .drop{display:block}

/* nav actions */
.nav-actions{display:flex; gap:10px}
.btn{border-radius:10px; padding:10px 14px; font-weight:700; cursor:pointer; border:none; background:transparent}
.btn.small{padding:8px 12px; font-size:14px}
.btn.primary{background:linear-gradient(90deg,var(--accent),var(--accent-400)); color:white; box-shadow:0 8px 20px rgba(10,125,66,0.12)}
.btn.outline{background:transparent; border:2px solid rgba(6,28,20,0.06); color:var(--accent)}

/* Hero */
.site-main{padding:44px 0 80px}
.hero-grid{display:grid; grid-template-columns:320px 1fr; gap:28px; align-items:center}
.card{background:var(--card); border-radius:var(--radius); padding:18px; box-shadow:var(--shadow-lg)}
.hero-left .brand-lg{width:140px; height:140px; margin:0 auto; object-fit:contain}
.badge{margin-top:12px; color:var(--muted); font-weight:700; font-size:13px}
.college-name{margin-top:10px; font-size:18px; font-weight:700}
.pill{display:inline-block; background:linear-gradient(90deg,var(--accent-400),var(--accent)); color:#fff; padding:8px 12px; border-radius:999px; font-weight:700; font-size:13px}
.headline{font-size:44px; margin:18px 0 10px; line-height:1.02; color:var(--text)}
.lead{color:var(--muted); font-size:17px; max-width:70ch}
.cta{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}

/* Stats */
.stats{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:32px}
.stat{background:linear-gradient(180deg,#fff,#f7fbff); border-radius:12px; padding:16px; text-align:center; box-shadow:var(--shadow-sm)}
.stat .num{font-size:26px; font-weight:800; color:var(--accent)}
.stat .label{color:var(--muted); margin-top:6px}

/* Features */
.features{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:28px}
.feature h4{margin-bottom:8px; color:var(--accent)}
.feature p{color:var(--muted)}


/* Footer */
.site-footer{background:var(--accent); color:white; padding:28px 0; margin-top:40px}
.footer-inner{display:flex; gap:24px; align-items:flex-start}
.footer-col{flex:1}
.footer-logo{width:92px; margin-bottom:8px}
.footer-links{list-style:none; padding:0; margin:0}
.footer-links li a{color:rgba(255,255,255,0.95)}

/* Responsiveness */
@media(max-width:1000px){
  .hero-grid{grid-template-columns:1fr; padding:0 0 20px}
  .stats{grid-template-columns:repeat(2,1fr)}
  .features{grid-template-columns:1fr}
  .nav-main ul{overflow:auto; padding-bottom:6px}
  .nav-inner{gap:12px}
  .contact-row{display:none}
}
@media(max-width:640px){
  .brand-text{display:none}
  .logo{width:56px; height:56px}
  .nav-main ul{gap:4px}
  .nav-main a{padding:8px 10px}
  .hero-left .brand-lg{width:110px; height:110px}
  .headline{font-size:28px}
}

/* Print tweaks */
@media print{
  .site-header, .nav-row, .site-footer { display:none }
}

/* -------- TOPBAR -------- */
.topbar {
    background: #0a7a3c;
    color: white;
    padding: 6px 0;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left .top-item {
    margin-right: 20px;
    font-weight: 500;
}

.topbar-right {
    font-weight: 600;
}

/* FORCE REMOVE ANY OLD GREEN BACKGROUNDS */
.top-row,
header,
.site-header,
.nav-row,
.top-inner,
.top-bar {
    background: #ffffff !important;      /* Pure white */
    box-shadow: none !important;
    border: none !important;
}
/* CENTER TOP BLOCK */
.top-row {
    padding: 25px 0;
    background: #fff !important;
}

.top-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-block {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-lg {
    width: 120px;
    height: auto;
}

.title-block {
    display: flex;
    flex-direction: column;
}

.college-name {
    font-size: 25px;
    font-weight: 800;
    margin: 0;
    color: #053b1a;
}

.college-sub {
    margin-top: 4px;
    font-size: 16px;
    opacity: .8;
    color: #053b1a;
}


/* MOBILE */
@media(max-width: 600px){
    .top-block { gap: 12px; }
    .logo-lg { width: 60px; }
    .college-name { font-size: 24px; }
}

#typed-sub span {
    display: block;
    text-align: justify;
    text-align-last: center;
    width: 100%;
}

/* Soft green glow for main heading */
.glow-title {
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from { text-shadow: 0 0 3px #0a7d42; }
  to   { text-shadow: 0 0 18px #00ff7f; }
}

/* Smooth fade-up for subtitle lines */
.fade-sub {
  opacity: 0;
  animation: fadeSlide 1.2s ease-out forwards;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* -------------------------
   NOTICE BAR (Top Scroller)
-------------------------- */
.notice-bar {
  background: #fafbfc;
  color: #0c0000;
  height: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-weight: 600;
  font-size: 0.85rem;
}

.notice-text {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-left 12s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.notice-bar:hover .notice-text {
  animation-play-state: paused;
}

.top-row {
  margin-bottom: 0;       /* remove extra space below logo/title block */
  padding-bottom: 5px;    /* adjust if you want very tight spacing */
}

.notice-bar {
  margin-top: 0;          /* remove space above scrolling bar */
}


.notice-bar {
  background: #00a5cf; /* theme color */
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

.notice-text {
  display: inline-block;
  animation: scroll-left 18s linear infinite;
  font-size: 16px;
  font-weight: 500;
}

.notice-text a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.notice-text a:hover {
  color: #9fffcb; /* theme hover color */
  text-decoration: underline;
}

/* Sticky & Full Width */
.nav-row {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0ef79d;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

/* Container */
.nav-container {
  max-width: 1250px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

/* Sticky & Full Width */
.nav-row {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #29ec29;
  box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

/* Container */
.nav-container {
  max-width: 1350px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}


/* Main Menu Style */
.nav-main ul {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-main a {
  color: #004e64;     /* menu text */
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 4px;
  display: block;
  transition: 0.25s;
}

/* Hover highlight + Active menu */
.nav-main a:hover,
.nav-main .active {
  color: #00a5cf;
  border-bottom: 2px solid #25a18e;
}

/* Dropdown */
.nav-main li {
  position: relative;
}

.nav-main .drop {
  list-style: none;
  background: #9fffcb;   /* dropdown bg */
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

/* Hover lock (selectable) */
.nav-main li:hover > .drop,
.nav-main .drop:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.nav-main .drop li a {
  padding: 10px 20px;
  font-size: 13px;
  border-bottom: none;
  color: #004e64;
  white-space: nowrap;
  transition: .25s;
}

/* Dropdown hover effect */
.nav-main .drop li a:hover {
  background: #7ae582;
  color: #00323d;
}

/* Login Buttons */
.nav-actions a {
  margin-left: 10px;
}

/* Login button styling */
.nav-actions .btn {
  background: #00a5cf;
  color: white;
  font-weight: 600;
}

.nav-actions .btn.outline {
  background: transparent;
  border: 2px solid #25a18e;
  color: #004e64;
}

.nav-actions .btn:hover {
  background: #25a18e;
  border-color: #25a18e;
  color: white;
}
/* Remove unwanted green gradient background */
.nav-main a,
.nav-main a:active,
.nav-main a:focus,
.nav-main .active {
    background: none !important;
    box-shadow: none !important;
}
/* Remove box glow / background highlight on clicked menu */
.nav-main a:focus,
.nav-main a:active,
.nav-main a[aria-current="page"],
.nav-main .active {
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #00a5cf !important; /* keep text visible */
    border-bottom: 2px solid #00a5cf; /* highlight selected page only with underline */
}

/* prevent wrapping of menu items */
.nav-main ul li {
    white-space: nowrap;
}

/* dropdown arrow */
.nav-main li.has-drop > a::after {
    content: "▼";
    font-size: 9px;
    color: #00a5cf;
    display: inline-block;
    margin-left: 3px;      /* very small spacing */
    vertical-align: middle;
}

/* ensure arrow does NOT push menu spacing */
.nav-main li.has-drop {
    padding-right: 4px;   /* reduced from 18px — fixes unwanted space */
}




.top-menu .top-link {
    margin-left: 18px;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.top-menu .top-link:hover {
    color: #9fffcb;  /* Hover shade based on your theme */
}


/* Force both children to stretch equal height */
.slide-left,
.notice-right {
    display: flex;
    align-items: stretch;
}


/* Notice Box */
.notice-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 18px 18px 18px; /* equal padding on all sides */
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ensures content stays aligned */
}

.notice-box h3 {
    margin-top: 0;     /* 🔥 removes extra top gap */
    margin-bottom: 14px;
}

.notice-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.notice-box li {
    margin-bottom: 10px;
}
.notice-box a {
    text-decoration: none;
    color: #04682a;
    font-weight: 500;
}
.notice-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1020px) {
    .slide-notice {
        grid-template-columns: 1fr;
    }
    .notice-box {
        height: auto;
    }
}

/* Notice scroll container */
.notice-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    height: 350px;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

/* Fixed Title */
.notice-header {
    font-size: 20px;
    font-weight: 700;
    padding: 16px 20px;
    color: #053b1a;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
}

/* Scrolling Area */
.notice-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 12px 20px;
}

/* Animation */
.notice-scroll ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    animation: scrollUp 12s linear infinite;
}

/* Pause on hover */
.notice-scroll:hover ul {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* half because list is duplicated */
}

.notice-scroll li {
    margin-bottom: 12px;
}

.notice-scroll a {
    text-decoration: none;
    color: #04682a;
    font-weight: 500;
}

.notice-scroll a:hover {
    text-decoration: underline;
}

/* Cards container */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

/* Individual Card */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

/* Card Image */
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Card Content */
.card-content {
    padding: 16px;
}

.card-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #053b1a;
}

.card-content p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

/* Button */
.card-content .btn {
    display: inline-block;
    padding: 8px 16px;
    background: #04682a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.card-content .btn:hover {
    background: #034f1b;
}

.text-image-section {
    padding: 50px 20px;
    background: #f8f8f8;
}

.text-image-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* responsive wrap */
}

.text-image-left img {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.text-image-right {
    flex: 1;
}

.text-image-right h2 {
    font-size: 28px;
    color: #053b1a;
    margin-bottom: 20px;
}

.text-image-right p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.text-image-right .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #04682a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.text-image-right .btn:hover {
    background: #034f1b;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .text-image-container {
        flex-direction: column;
        text-align: justify;
    }

    .text-image-left img {
        max-width: 100%;
    }
}

.trust-section {
  padding: 60px 20px;
  text-align: center;
}

.trust-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0a7d42;
}

.trust-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 16px;
}

.trust-table thead th {
  background: #0a7d42;
  color: white;
  padding: 14px;
  font-size: 16px;
}

.trust-table td {
  padding: 12px 18px;
  border: 1px solid #dcdcdc;
  font-weight: 500;
}

.trust-table tr:nth-child(even) {
  background: #f8fdf8;
}
.trust-section {
  padding-top: 20px !important; /* reduce space */
  margin-top: 0 !important;
}
/* Emblem Page */
.emblem-section {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.emblem-section .emblem-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a7d42;
  margin-bottom: 15px;
}

.emblem-section .emblem-image img {
  width: 200px;                   /* adjust size */
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.emblem-section .emblem-description {
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
  color: #333;
}
.emblem {
  transition: 0.4s;
}
.emblem:hover {
  filter: drop-shadow(0 0 18px #00ff38);
  transform: scale(1.05);
}
/* banner - text */
.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;            /* reduced spacing */
  text-align: center;
  flex-wrap: wrap;
  padding: 5px 0;       /* reduces top-bottom gap */
}

/* Both logos */
.title-logo {
  width: 90px;
  height: auto;
  transition: 0.4s;
}

/* Glow animation on hover */
.title-logo:hover {
  filter: drop-shadow(0 0 15px #00ff38);
  transform: scale(1.05);
}

/* Center text block */
.title-text h1 {
  font-size: 28px;
  color: #0a7d42;
  font-weight: 700;
  margin: 0;             /* remove extra space */
  line-height: 1.2;      /* reduce line height */
}

.title-text p {
  font-size: 16px;
  line-height: 1.35;     /* reduced line spacing */
  margin: 4px 0 0 0;     /* slight space only above */
  color: #444;
}

/* Remove bottom space completely */
.title-text p:last-child {
  margin-bottom: 0;
}

/* Mobile responsive fix */
@media (max-width: 600px) {
  .title-wrapper {
    flex-direction: column;
    gap: 12px;           /* spacing reduced for mobile */
  }
  .title-logo {
    width: 70px;
  }
}
/*pdf -section */
.pdf-section {
    width: 100%;
    max-width: 100%;   /* override container width */
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

.pdf-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a7d42;
}

/* FULL WIDTH PDF */
.pdf-viewer {
    width: 100%;
    height: 100vh; /* Full screen height */
    border: none;
}
.justify {
  text-align: justify;
  line-height: 1.7;
}
.page-wrapper {
    padding: 0 20px;
}


/* Notice + Thought Section */
.notice-thought-section {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

/* Notice Box */
.notice-box, .thought-box {
    background: #ffffff;
    border-radius: 8px;
    color: #ffffff;
    width: 50%;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgb(250, 247, 247);
}

.notice-header, .thought-header {
    background: #00a5cf;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
}

.notice-scroll {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.notice-scroll ul {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scrollUp 12s linear infinite;
}

.notice-scroll ul li {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.notice-scroll ul li a {
    color: #0a7d42;
    text-decoration: none;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Thought box */
.thought-content {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    font-style: italic bold;
    color: #0a7d42;
}
/* FULL WIDTH SLIDESHOW */
.full-slider {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.full-slider .slideshow {
    width: 100%;
    height: 800px; /* 1920x800 */
    position: relative;
}

.full-slider .slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.full-slider .slideshow img.active {
    display: block;
}

/* Ensure first-row dropdowns appear ABOVE second row */
.nav-main .drop {
    position: absolute;
    z-index: 9999;     /* higher than second row */
    background: #fff;
    padding: 10px 0;
    min-width: 220px;
    border: 1px solid #ddd;
}

/* Ensure first row (top menu) stays ABOVE second row */
.nav-row {
    position: relative;
    z-index: 50;
}

/* Second row should stay behind dropdowns */
.second-row {
    position: relative;
    z-index: 1;
}
.non-teaching-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 10px 0;
    text-align: justify;
}

.non-teaching-gallery .staff img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.non-teaching-gallery .name {
    margin: 10px 0 2px;
    font-size: 1rem;
    font-weight: 600;
}

.non-teaching-gallery .desig {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}
/* ===============================
   Exam Application – Alignment Fix
   (No design change)
================================ */

/* Center the card nicely */


/* Input & select spacing */
.form-control,
.form-select {
    padding: 10px 12px;
    font-size: 15px;
}

/* Label alignment */
label {
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
}

/* Row spacing */
.row.g-3 {
   row-gap: 18px;
}

/* Subject list box */
#subjectList {
    min-height: 120px;
    border-radius: 6px;
    text-align: left;
}

/* Subject checkbox rows */
#subjectList label {
    display: block;
    padding: 6px 8px;
    cursor: pointer;
}

/* Checkbox spacing */
#subjectList input[type="checkbox"] {
    margin-right: 8px;
}

/* Section headings */
h5 {
    margin-top: 10px;
    font-weight: 600;
}

/* Submit button spacing */
button.btn-lg {
    padding: 10px 30px;
}
/* Exam Application – Desktop Width Fix */
.exam-form-container {
    max-width: 1200px;
}

/* === TAMIL INPUT HARD FIX === */
input.tamil-input {
    font-family: "Noto Sans Tamil", "Latha", "Vijaya", sans-serif !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    text-transform: none !important;
    padding-top: 8px;
    padding-bottom: 8px;
}
