* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ðŸ”¸ Top Bar */
.top-bar {
  background: #e84c0d;
  color: #fff;
  padding: 5px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}
.top-bar .left span {
  margin-right: 15px;
}


/* ðŸ”¸ Header */
header {
  background: #fff;
  border-bottom: 3px solid #e84c0d;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 10px 15px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 60px;
  margin-right: 10px;
}
.logo h1 {
  color: #002147;
  font-size: 22px;
  line-height: 1.2;
}
.logo p {
  color: #555;
  font-size: 12px;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #002147;
  font-weight: 500;
  padding: 5px 10px;
}
nav ul li a.active,
nav ul li a:hover {
  color: #e84c0d;
  border-bottom: 2px solid #e84c0d;
}

/* ðŸ”¸ Notice Bar */
.notice-bar {
  background: #c8102e;
  color: #fff;
  font-weight: 500;
  padding: 5px;
  font-size: 15px;
}

/* ðŸ”¸ Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  height: 600px;
}
.slider {
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide .overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
}
.content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
}
.content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.content p {
  font-size: 20px;
  color: #ffcc00;
}
.content .desc {
  font-size: 15px;
  margin: 15px 0;
  color: #fff;
}
.buttons .btn {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.apply {
  background: #e84c0d;
  color: #fff;
}
.learn {
  border: 2px solid #fff;
  color: #fff;
}
.prev, .next {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 24px;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Responsive */
@media (max-width: 768px) {
  nav ul { flex-wrap: wrap; }
  .content h2 { font-size: 28px; }
  .content p { font-size: 16px; }
}


/* ===== Stats Section ===== */
.stats-section {
  background-color: #1d3b8b; /* Dark Blue Background */
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.stat-box {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.stat-box .icon {
  background-color: #e84c0d; /* Orange Circle */
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
  font-size: 30px;
}

.stat-box h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 16px;
  color: #d9e3ff;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}


/* ðŸ”¸ Departments Section */
.departments {
  text-align: center;
  padding: 60px 20px;
  background: #f9fafb;
}

.departments .section-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.departments .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  justify-content: center;
}

.dept-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.dept-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.dept-card i {
  font-size: 2.5rem;
  color: #fff;
  background: #000;
  border-radius: 50%;
  padding: 18px;
  margin-bottom: 15px;
}

.dept-card h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
}

/* ðŸ”¹ Color Variants */
.yellow i { background: #f5b942; }
.blue i { background: #3b82f6; }
.green i { background: #22c55e; }
.cyan i { background: #06b6d4; }
.red i { background: #ef4444; }
.orange i { background: #f97316; }
.pink i { background: #ec4899; }
.purple i { background: #a855f7; }
.violet i { background: #6366f1; }
.gold i { background: #facc15; }
.crimson i { background: #dc2626; }

@media (max-width: 600px) {
  .dept-card {
    padding: 25px 15px;
  }
  .dept-card i {
    font-size: 2rem;
  }
}


/* ðŸ”¸ Career Section */
.career-section {
  background: linear-gradient(90deg, #0d47a1, #1565c0);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.career-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.career-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.career-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.career-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.career-buttons .btn.primary {
  background: #ff6b00;
  color: #fff;
}

.career-buttons .btn.primary:hover {
  background: #e65c00;
  transform: translateY(-3px);
}

.career-buttons .btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.career-buttons .btn.secondary:hover {
  background: #fff;
  color: #0d47a1;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
  .career-content h2 {
    font-size: 1.6rem;
  }
  .career-content p {
    font-size: 0.95rem;
  }
  .career-buttons .btn {
    width: 100%;
    text-align: center;
  }
}


/* ---- About Section Base ---- */
.about-section {
    padding: 70px 0;
    background-color: #ffffff;
    font-family: "Segoe UI", sans-serif;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}

/* ---- Header ---- */
.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #063cff;
}

.about-header p {
    font-size: 18px;
    color: #555;
}

/* ---- Layout ---- */
.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* ---- Text Content ---- */
.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 17px;
    color: #444;
    line-height: 28px;
}

/* ---- Metrics (New Unique Classes) ---- */
.about-metrics {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.metric-card {
    background: rgba(220, 230, 255, 0.65);
    padding: 22px 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.metric-card h2 {
    font-size: 34px;
    color: #063cff;
    margin-bottom: 5px;
    font-weight: 700;
}

.metric-card p {
    color: #444;
    font-size: 15px;
}

/* Highlight Box */
.metric-green {
    background: rgba(205, 255, 205, 0.65);
}

.metric-green h2 {
    color: #047a2d;
}

/* ---- Image ---- */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.12);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-metrics {
        justify-content: center;
    }
}




/* ---- contact us page css ---- */



/* contact.css
   Dark-blue professional theme, responsive grid, glossy UI.
   Clean class selectors and accessible states. */

/* ---------- Reset & helpers (minimal) ---------- */
:root{
  --bg: #08152C;              /* Main dark background (matches your sections) */
  --panel: #0C2548;           /* Cards / Form / Right info panel background */
  --accent: #4DA3FF;          /* Main blue accent (buttons, links) */
  --accent-hover: #77C7FF;    /* Hover blue glow */
  --muted: #B9C8DA;           /* Light secondary text */
  --txt: #FFFFFF;             /* White text */

  --border: #1A355A;          /* Soft border (your card borders) */
  
  --footer-bg: #082041;       /* Footer main background */
  --footer-dark: #06182E;     /* Footer bottom strip */

  --card-shadow: 0 8px 24px rgba(0,0,0,0.35); /* Your website shadow style */
  
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1100px;
  --gap: 20px;
}


/* prefers-reduced-motion support */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html,body { height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg) 0%, #051027 100%);
  color:var(--txt);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  -webkit-text-size-adjust:100%;
}

/* Utility */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

/* ---------- Container & Hero ---------- */
.contact-container{
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 22px;
  display:flex;
  flex-direction:column;
  gap: 22px;
}

.contact-hero{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--card-shadow);
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
  border: 1px solid rgba(255,255,255,0.03);
}

.hero-title{
  margin:0;
  font-size: clamp(1.4rem, 2.4vw, 2.0rem);
  letter-spacing: -0.02em;
  color: var(--txt);
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.hero-sub{
  margin:0;
  color:var(--muted);
  font-size: 0.95rem;
}

/* ---------- Grid layout ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items:start;
}

/* side-by-side on >= 900px */
@media (min-width:900px){
  .contact-grid{
    grid-template-columns: 1fr 420px;
  }
}

/* ---------- Form card ---------- */
.contact-form{
  background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0.01));
  padding: 20px;
  border-radius: var(--radius);

  /* ✨ Updated Premium Glow Border */
  border: 1px solid rgba(77,163,255,0.25);
  box-shadow: 0 12px 30px rgba(2,10,22,0.65), 
              0 0 20px rgba(77,163,255,0.25);

  transition: transform 0.35s cubic-bezier(.2,.9,.2,1), 
              box-shadow 0.35s,
              border-color 0.35s;
  will-change: transform;
}

/* hover glow enhance */
@media (hover: hover){
  .contact-form:hover{ 
    transform: translateY(-6px); 
    box-shadow: 
      0 24px 40px rgba(2,10,22,0.7),
      0 0 28px rgba(77,163,255,0.40);
    border-color: rgba(77,163,255,0.55);
  }
}


.form-row{ margin-bottom: 14px; display:flex; flex-direction:column; gap:6px; }
.form-label{ font-size:0.9rem; color:var(--muted); }

/* Inputs */
.input, .textarea {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  color: var(--txt);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.95rem;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
  box-shadow: inset 0 -6px 12px rgba(0,0,0,0.2);
}

/* textarea height handled via rows */
.textarea{ resize:vertical; min-height:120px; line-height:1.5; }

/* Input hover & focus */
.input:hover, .textarea:hover { transform: translateY(-2px); }
.input:focus, .textarea:focus {
  border-color: rgba(30,144,255,0.95);
  box-shadow: 0 6px 20px rgba(30,144,255,0.12), 0 1px 0 rgba(255,255,255,0.02) inset;
}

/* Form actions */
.form-actions{
  display:flex;
  gap:12px;
  margin-top:6px;
  align-items:center;
}

.btn{
  appearance:none;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight:600;
  background: linear-gradient(180deg, var(--accent), #1777d9);
  color: white;
  box-shadow: 0 10px 26px rgba(30,144,255,0.12);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
  min-width:120px;
}

.btn:active{ transform: translateY(1px) scale(.998); }
.btn:hover{ transform: translateY(-3px); filter:brightness(1.02); box-shadow: 0 18px 40px rgba(30,144,255,0.16); }

/* ghost button */
.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  box-shadow:none;
}

/* ---------- Contact info card ---------- */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.info-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(2,10,22,0.6);
  border: 1px solid rgba(255,255,255,0.03);
}

.info-icon{
  width:56px; height:56px;
  display:inline-grid;
  place-items:center;
  color: var(--accent);
  margin-bottom:8px;
  background: radial-gradient( circle at 40% 30%, rgba(30,144,255,0.08), transparent 30% );
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(2,10,22,0.5);
}

.info-title{
  margin:0 0 8px 0;
  font-size:1.05rem;
  color: var(--txt);
}

.info-body { color: var(--muted); margin: 6px 0; font-size:0.95rem; }

.info-link{
  color: var(--txt);
  text-decoration:none;
  border-bottom: 1px dashed rgba(255,255,255,0.04);
  transition: color .12s, transform .12s;
}
.info-link:hover{ color: var(--accent); transform:translateY(-2px); }

/* quick buttons */
.info-quick{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.quick-btn{
  display:inline-block;
  padding:10px 12px;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  color:var(--txt);
  text-decoration:none;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 8px 22px rgba(2,10,22,0.45);
  transition: transform .14s ease, box-shadow .14s;
}
.quick-btn:hover{ transform: translateY(-4px); box-shadow: 0 18px 40px rgba(2,10,22,0.55); }

/* small notes */
.small-notes{ margin-top:12px; color:var(--muted); font-size:0.87rem; }

/* footer */
.contact-footer{
  text-align:center;
  padding:10px;
  color:var(--muted);
  font-size:0.9rem;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 600px){
  .contact-container{ padding:14px; margin:12px auto; }
  .form-actions{ flex-direction:column; align-items:stretch; }
  .btn{ width:100%; min-width:0; }
  .contact-grid{ gap:14px; }
}

/* ---------- Small visual touches (glossy highlights) ---------- */
.info-card::after, .contact-form::after{
  content: "";
  position: absolute;
  pointer-events:none;
  mix-blend-mode: overlay;
}

/* ensure form elements accessible focus ring for keyboard users */
.input:focus-visible, .textarea:focus-visible, .btn:focus-visible, .quick-btn:focus-visible {
  outline: 3px solid rgba(30,144,255,0.18);
  outline-offset: 3px;
}

