/* ===================== Root Theme ===================== */
:root {
  --accent: #336b87;         /* deeper teal-blue for primary elements */
  --accent-light: #57a0b3;   /* lighter teal for hover effects */
  --muted: #f0f4f5;          /* softer off-white for backgrounds */
  --card-bg: #ffffff;         /* keep card white */
  --text-dark: #22333b;       /* slightly deeper dark text */
  --text-muted: #5a5a5a;      /* softer muted text */
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.16);
  --shadow-heavy: rgba(0, 0, 0, 0.24);
  --transition-speed: 0.25s;
  --border-radius: 12px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
}

/* ===================== Global ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, var(--muted), #c3d6d5 60%);
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text-dark);
}

/* ===================== Header ===================== */
header {
  background: linear-gradient(90deg, rgba(138,109,59,0.08), rgba(138,109,59,0.02));
  border-bottom: 1px solid rgba(138,109,59,0.1);
  backdrop-filter: blur(3px);
  padding: var(--spacing-md) var(--spacing-lg);
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

/* ===================== Navbar ===================== */
.navbar-custom {
  background-color: #afc2bf;
  padding: var(--spacing-md) var(--spacing-lg);
}

.navbar-custom .navbar-brand {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-custom .nav-link {
  color: var(--text-dark);
  margin-left: var(--spacing-md);
  font-weight: 500;
  transition: color var(--transition-speed) ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: #fff;
}

/* ===================== Buttons ===================== */
.btn-accent {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-accent-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.6rem 1.2rem;
  transition: all var(--transition-speed) ease;
}

.btn-accent-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ===================== Login Card ===================== */
.login-card {
  background-color: #e4ecea;
  max-width: 420px;
  margin: 2rem auto;
  border-radius: 1rem;
  box-shadow: 0 8px 28px var(--shadow-medium);
  padding: 2.2rem;
  text-align: center;
}

.login-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.login-card input,
.login-card select {
  width: 100%;
  height: 45px;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  padding: 0 12px;
  margin-bottom: 1rem;
}

/* Custom Checkbox */
#rememberMe {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #afc2bf;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
}

#rememberMe:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

#rememberMe:checked::after {
  content: "✔";
  font-size: 11px;
  color: white;
  position: absolute;
  top: -1px;
  left: 2px;
}

#rmrbtn {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.form-check-label {
  margin-left: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ===================== Career List ===================== */
#careerList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
  justify-items: center;
}


@media (max-width: 992px) {
  #careerList {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #careerList {
    grid-template-columns: 1fr;
  }
}

.career-card {
  width: 100%;
  max-width: 450px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 690px;
}

.career-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.career-card img {
  width: 100%;
  height: 60%; /* image takes up 70% of the card height */
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0; /* only top corners rounded */
  display: block;
}


.career-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1; /* fills remaining 30% of card height */
}
.career-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.career-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Skills chips */
.skill-chip {
  display: inline-block;
  padding: 6px 14px;
  margin: 3px 6px 6px 0;
  background: #f5f8fa;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid #e0e6ea;
  transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.skill-chip:hover {
  background: #e4eef2;
  transform: scale(1.05);
}

/* Career card button */
.career-card button {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.3rem;
  border-radius: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.career-card button:hover {
  background: #225a59;
  transform: scale(1.03);
}
/* career-ended */


/* ===================== QUIZ RESULT ===================== */
#quizResult {
  margin-top: 25px;
  text-align: center;
}

/* Quiz Recommendation Card */
#quizResult .career-card {
  max-width: 420px;
  margin: 20px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#quizResult .career-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#quizResult .career-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#quizResult .career-card-body {
  padding: 15px;
  text-align: left;
}

#quizResult .career-card-body h5 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

#quizResult .career-card-body p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
}

#quizResult .career-card-body .small-muted {
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

#quizResult .career-card-body button {
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
}
/* ================= QUIZ ENDS ===================== */

/* ===================== Multimedia / Video Podcast ===================== */
.video-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 6px 18px var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  width: auto;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px var(--shadow-medium);
}

.video-card video {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ddd;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-card video:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.video-card .video-info {
  padding: 1rem;
}

.video-card h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.video-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Play button overlay */
.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(51, 107, 135, 0.8);
  color: #fff;
  font-size: 2rem;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  transition: background 0.3s ease;
}

.video-card:hover .play-btn {
  display: block;
}

.video-card .play-btn:hover {
  background: var(--accent-light);
}
.audio-player {
  margin-top: 20px; 
}

/* ===================== Filter Buttons ===================== */
.filter-btn {
  background: var(--muted);
  color: var(--text-dark);
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  margin: 0 4px 8px 0;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.filter-btn:hover {
  background: var(--accent-light);
  color: #fff;
  border-color: var(--accent-light);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* ===================== Story Section ===================== */
#stories {
  background: #fff;
  padding: 40px 20px;
  border-radius: var(--border-radius);
}

#stories h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Story Cards */
.story-card {
  background-color: var(--card-bg);
  border: 1px solid #e6e6e6;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.story-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.story-card h6 {
  font-weight: 600;
  color: var(--text-dark);
}

.story-card .small-muted {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Read More Button */
.story-card .btn-accent {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
}

/* Share Button */
.story-card .btn-outline-accent {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
}
/* ===================== Story Modal ===================== */





/* ===================== Resources Section ===================== */
#resources {
  background: #fff;
  padding: 40px 20px;
  border-radius: var(--border-radius);
}

#resources h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Resource Cards */
.resource-card {
  background-color: var(--card-bg);
  border: 1px solid #3c6ad5;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.resource-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.resource-card h6 {
  font-weight: 600;
  color: var(--text-dark);
}

.resource-card .small-muted {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.resource-card .btn-accent,
.resource-card .btn-outline-accent {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* ======== RESOURCES ENDS ===============*/

/* feedback */
#feedback {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--muted);
  min-height: 400px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.feedback-card {
  background: linear-gradient(180deg, var(--muted), #afc2bf 60%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 18px rgba(30, 30, 30, 0.04);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  padding: 50px 40px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.feedback-card:hover {
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.1);
}

.feedback-card h2 {
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 700;
  font-size: 2.2rem;
}

.feedback-card p {
  margin-bottom: 40px;
  color: var(--text-dark);
  opacity: 0.8;
  font-size: 1rem;
  line-height: 1.5;
}

/* Input group styling */
.input-group {
  margin-bottom: 25px;
  position: relative;
  text-align: left;
}

/* Inputs, textarea, select with consistent styling */
.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
  font-weight: 400;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical; /* only textarea */
  box-sizing: border-box;
}

/* On focus */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

/* Placeholder styling */
.input-group input::placeholder,
.input-group textarea::placeholder,
.input-group select::placeholder {
  color: var(--text-muted);
  opacity: 1; /* fully visible */
  font-style: italic;
}

/* Remove default select arrow for a cleaner look */
.input-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* Button styling */
.feedback-card button {
  background: var(--accent);
  color: var(--card-bg);
  border: none;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

.feedback-card button:hover {
  background:var(--muted);
  opacity: 0.9;
  color: #000000;
}
/* stories-feedback ended */

/* about */
/* Hero Section */
#about .hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

#about .hero .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
   border-radius: 20px;
}

#about .hero .overlay {
  background: rgba(0, 0, 0, 0.114);
  padding: 40px;
  border-radius: 20px;
  z-index: 1;
}
#about .hero h4 {
  color: #fff !important;
}

#about .hero h1 {
  font-size: 2.5rem;
  margin: 20px 0;
  color: #fff !important;
}

#about .hero button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
}

#about .hero button:hover {
  background: #fff;
  color: #000;
}

/* Partners Section */
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px;
  gap: 40px;
  background: #fff;
  border-radius:10px ;
}
.partners:hover{
  transform:  translateY(-10px);
  

}

.partners .text {
  flex: 1;
  min-width: 280px;
  font-size: 1.1rem;
}

.partners .logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

.partners img {
  max-width: 100px;
  /* filter: grayscale(100%); */
  transition: 0.3s;
}

/* .partners img:hover {
  filter: grayscale(0%);
} */

/* Belief Section */
.belief {
  background: #465b58;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 25px;
}
.belief:hover{
  transform:  translateY(-10px);

}

.belief h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

.belief p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.slide {
  background: var(--section-bg);
  padding: 60px 20px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.slide .content {
  margin-bottom: 30px;
}

.slide h3 {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.image-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  position: relative;
}
.image-container:hover{
transform:  translateY(-10px);
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease-in-out;
}

.slide-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.slide-btn:hover {
  background: #2c2c2c;
  

}

.controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.img-btn {
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: center;
}

.img-btn.active {
  background: var(--accent);
}

.story .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
.story {
  padding: 40px 20px;
  background: #fff;
}
.story-header {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
.story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.story-text {
  flex: 1 1 400px;
  min-width: 280px;
}
.story-text p {
  margin-bottom: 16px;
}
.story-video-wrapper {
  flex: 1 1 400px;
  min-width: 280px;
  /* Aspect-ratio trick: 16:9 */
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* height relative to width */
  height: 0;
  overflow: hidden;
  border-radius: 5px;
}
.story-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* or ‘contain’ depending on how you want it cropped/fitted */
}
.story-video-wrapper video:hover{
  transform: translateY(-10x);
}

.caption {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}
@media (max-width: 700px) {
  .story-content {
    flex-direction: column;
  }
}
.join{
   display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px;
  gap: 40px;
  background:#465b58;
  border-radius:10px ;
}
.join:hover{
transform:  translateY(-10px);
}
.join h3{
  text-align: center;
    flex: 1;
    color: white;
  min-width: 280px;
  font-size: 2rem;

}
/* about ended */
/* ===================== Contact Section ===================== */
#contact {
  padding: 80px 20px;
  background: var(--card-bg);
  color: #333;
  border-radius: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* Left Panel */
.contact-info {
  flex: 1 1 500px;
}

.contact-info h2 {
  font-size: 2.4rem;
  color: #1e3a5f;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Team Member Cards */
.team-member {
  background: linear-gradient(180deg, var(--muted), #afc2bf 60%);
  border-radius: var(--border-radius);
  padding: 20px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #4aa3df;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.team-member h3 {
  margin: 0;
  color: #1e3a5f;
  font-size: 20px;
}

.status {
  font-weight: bold;
  margin-left: 8px;
  font-size: 0.9em;
}

.status.online { color: #008000; }
.status.offline { color: rgb(212, 72, 72); }

.team-member p {
  margin: 4px 0;
  color: #666;
  font-size: 15px;
}

/* Office Hours Table */
.office-hours {
  margin-top: 40px;
  flex: 1 1 100%;
}

.office-hours h3 {
  margin-bottom: 16px;
  font-size: 20px;
  color: #1e3a5f;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hours-table th,
.hours-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 15px;
  color: #444;
}

.hours-table th {
  background: linear-gradient(180deg,var(--muted),#afc2bf 60%);
  color: #fff;
}

.hours-table tr:nth-child(even) { background: #f0f5f9; }

/* Right Panel: Map */
.map-container {
  flex: 1 1 600px;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  animation: fadeIn 1s ease forwards;
}

/* Extra Contact Info */
.extra-contact-info {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 40px;
  background: linear-gradient(180deg,var(--muted),#afc2bf 60%);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  max-height: 800px;
}

.extra-contact-info > div {
  flex: 1 1 250px;
}

/* Social Media / Address / WhatsApp */
.social-links h3,
.office-address h3,
.whatsapp-chat h3 {
  font-size: 18px;
  color: #1e3a5f;
  margin-bottom: 16px;
}

.social-links ul { list-style: none; padding: 0; }
.social-links li { margin-bottom: 12px; }
.social-links a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.social-links i { margin-right: 8px; }
.office-address p { color: #555; margin-bottom: 8px; font-size: 15px; }

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover { background-color: #1ebe57; }

/* ===================== Responsive ===================== */
@media (max-width: 768px) {
  .extra-contact-info { flex-direction: column; }
  .extra-contact-info > div { flex: 1 1 100%; }
}

/* ===================== Animations ===================== */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===================== Utility Hover Effects ===================== */
.hover-lift:hover {
  transform: translateY(-10px);
  transition: transform var(--transition-speed) ease;
}

/* Container for all filters */
#filt {
  display: flex;
  align-items: center;   /* vertically center all dropdowns */
  gap: 10px;             /* space between dropdowns */
  flex-wrap: wrap;       /* wrap to next line on small screens */
  margin-bottom: 1rem;
}

/* Style all selects inside #filt */
#filt select {
  padding: 10px 40px 10px 15px;  /* space for text + arrow */
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  appearance: none;           /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); /* custom arrow */
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  flex: 1 1 180px;   /* flexible width, minimum 180px */
  max-width: 250px;   /* optional max width */
}

/* Hover & focus effect */
#filt select:hover,
#filt select:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.25);
  outline: none;
}

/* Optional: spacing between adjacent dropdowns */
#filt select + select {
  margin-left: 10px;
}

/* Responsive: stack vertically on very small screens */
@media (max-width: 600px) {
  #filt {
      flex-direction: column;
      align-items: stretch;
  }

  #filt select {
      width: 100%;
      max-width: none;
      margin-left: 0;
  }
}

.btn-logout {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.3rem;
  border-radius: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.btn-logout:hover {
    background: #225a59;
    transform: scale(1.03);  /* darker red on hover */
}
@media (max-width: 455px) {
 
  
  header{
   
  background: linear-gradient(90deg, rgba(138,109,59,0.08), rgba(138,109,59,0.02));
  border-bottom: 1px solid rgba(138,109,59,0.1);
  backdrop-filter: blur(3px);
  padding: .5rem;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

  

}