/*
* College Website — Prestige College
* Transformed from Furni ecommerce template
* Original: Untree.co | License: CC BY 3.0
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #3b5d50;
  --primary-light: #314d43;
  --accent: #f9bf29;
  --accent-light: #f8b810;
  --text-dark: #2f2f2f;
  --text-body: #6a6a6a;
  --bg-light: #eff2f1;
  --bg-white: #ffffff;
  --success: #16a34a;
}

body {
  overflow-x: hidden;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-body);
  font-size: 14px;
  background-color: var(--bg-light);
}

a {
  text-decoration: none;
  transition: .3s all ease;
  color: var(--text-dark);
  text-decoration: underline;
}
a:hover { color: var(--primary); text-decoration: none; }
a.more { font-weight: 600; }

/* ===== NAVBAR ===== */
.custom-navbar {
  background: var(--primary) !important;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.custom-navbar.scrolled {
  background: rgba(59, 93, 80, 0.85) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.custom-navbar .navbar-brand {
  font-size: 32px;
  font-weight: 600;
}
.custom-navbar .navbar-brand > span { color: var(--accent); opacity: 1; }
.custom-navbar .navbar-toggler { border-color: transparent; }
.custom-navbar .navbar-toggler:active,
.custom-navbar .navbar-toggler:focus { box-shadow: none; outline: none; }

@media (min-width: 992px) {
  .custom-navbar .custom-navbar-nav li { margin-left: 15px; margin-right: 15px; }
}
.custom-navbar .custom-navbar-nav li a {
  font-weight: 500;
  color: #ffffff !important;
  opacity: .6;
  transition: .3s all ease;
  position: relative;
}
@media (min-width: 768px) {
  .custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: 0; left: 8px; right: 8px;
    background: var(--accent);
    height: 5px;
    opacity: 1; visibility: visible;
    width: 0;
    transition: .15s all ease-out;
  }
}
.custom-navbar .custom-navbar-nav li a:hover { opacity: 1; }
.custom-navbar .custom-navbar-nav li a:hover:before { width: calc(100% - 16px); }
.custom-navbar .custom-navbar-nav li.active a { opacity: 1; }
.custom-navbar .custom-navbar-nav li.active a:before { width: calc(100% - 16px); }
.custom-navbar .custom-navbar-cta {
  margin-left: 0 !important;
  flex-direction: row;
}
@media (min-width: 768px) {
  .custom-navbar .custom-navbar-cta { margin-left: 40px !important; }
}
.custom-navbar .custom-navbar-cta li { margin-left: 0; margin-right: 0; }
.custom-navbar .custom-navbar-cta li:first-child { margin-right: 20px; }
.custom-navbar .custom-navbar-cta li a:not(.btn) { color: var(--accent) !important; opacity: 1; font-size: 20px; }
.custom-navbar .custom-navbar-cta li a.btn { color: var(--primary) !important; font-size: 14px; }

/* ===== HERO ===== */
.hero {
  background: var(--primary);
  padding: calc(4rem - 30px) 0 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-image: url("../images/maiit image.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.5);
  z-index: 1;
}
@media (min-width: 768px) { .hero { padding: calc(3rem - 30px) 0 3rem 0; } }
@media (min-width: 992px) { .hero { padding: calc(5rem - 30px) 0 5rem 0; } }
.hero .container { position: relative; z-index: 2; }
.hero .intro-excerpt { position: relative; z-index: 4; }
@media (min-width: 992px) { .hero .intro-excerpt { max-width: 600px; } }
.hero h1 { font-weight: 700; color: #ffffff; margin-bottom: 30px; }
@media (min-width: 1400px) { .hero h1 { font-size: 54px; } }
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,0.8); margin-bottom: 30px; font-size: 1.1rem; }
.hero .hero-img-wrap { position: relative; }
.hero .hero-img-wrap img {
  position: relative;
  top: 0; right: 0;
  z-index: 2;
  max-width: 780px;
  left: -20px;
  border-radius: 16px;
}
@media (min-width: 768px) { .hero .hero-img-wrap img { right: 0; left: -100px; } }
@media (min-width: 992px) { .hero .hero-img-wrap img { left: 0; top: -80px; position: absolute; right: -50px; } }
@media (min-width: 1200px) { .hero .hero-img-wrap img { left: 0; top: -80px; right: -100px; } }


/* ===== BUTTONS ===== */
.btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  color: #ffffff;
  background: var(--text-dark);
  border-color: var(--text-dark);
  transition: all .3s ease;
}
.btn:hover { color: #fff; background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.btn:active, .btn:focus { outline: none !important; box-shadow: none; }
.btn.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn.btn-secondary { color: var(--primary); background: var(--accent); border-color: var(--accent); }
.btn.btn-secondary:hover { background: var(--accent-light); border-color: var(--accent-light); }
.btn.btn-white-outline { background: transparent; border-width: 2px; border-color: rgba(255,255,255,0.3); }
.btn.btn-white-outline:hover { border-color: white; color: #fff; }

.section-title { color: var(--text-dark); }
.text-primary { color: var(--primary) !important; }

/* ===== STATS COUNTER ===== */
.stats-counter-section {
  padding: 3rem 0;
  background: var(--bg-white);
  border-bottom: 3px solid var(--accent);
}
.stats-item { padding: 1rem; }
.stats-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  display: inline;
  line-height: 1;
}
.stats-suffix {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stats-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PROGRAMS (was Product Section) ===== */
.product-section { padding: 4rem 0; }
.product-section .product-item {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding-bottom: 50px;
  cursor: pointer;
}
.product-section .product-item .product-thumbnail {
  margin-bottom: 30px;
  position: relative; top: 0;
  transition: .3s all ease;
}
.product-section .product-item h3 { font-weight: 600; font-size: 16px; }
.product-section .product-item strong { font-weight: 800 !important; font-size: 18px !important; }
.product-section .product-item h3,
.product-section .product-item strong { color: var(--text-dark); text-decoration: none; }
.product-section .product-item .icon-cross {
  position: absolute;
  width: 35px; height: 35px;
  display: inline-block;
  background: var(--primary);
  bottom: 15px; left: 50%;
  transform: translateX(-50%);
  margin-bottom: -17.5px;
  border-radius: 50%;
  opacity: 0; visibility: hidden;
  transition: .3s all ease;
}
.product-section .product-item .icon-cross img {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.product-section .product-item:before {
  bottom: 0; left: 0; right: 0;
  position: absolute; content: "";
  background: #e2e8f0;
  height: 0%; z-index: -1;
  border-radius: 10px;
  transition: .3s all ease;
}
.product-section .product-item:hover .product-thumbnail { top: -25px; }
.product-section .product-item:hover .icon-cross { bottom: 0; opacity: 1; visibility: visible; }
.product-section .product-item:hover:before { height: 70%; }

/* Program Icon Styling */
.program-icon {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all .4s ease;
  box-shadow: 0 8px 25px rgba(59,93,80,0.2);
}
.program-icon i {
  font-size: 42px;
  color: var(--accent);
}
.program-card:hover .program-icon {
  background: var(--accent);
  transform: scale(1.1) rotate(5deg);
}
.program-card:hover .program-icon i { color: var(--primary); }

/* ===== WHY CHOOSE US ===== */
.why-choose-section { padding: 4rem 0; }
.why-choose-section .img-wrap { position: relative; }

.why-choose-section .img-wrap img { border-radius: 20px; }

.feature { margin-bottom: 30px; }
.feature .icon {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}
.feature .icon:before {
  content: "";
  width: 33px; height: 33px;
  position: absolute;
  background: rgba(59,93,80,0.2);
  border-radius: 50%;
  right: -8px; bottom: 0;
}
.feature .icon .feature-icon-inline {
  font-size: 28px;
  color: var(--primary);
}
.feature h3 { font-size: 14px; color: var(--text-dark); }
.feature p { font-size: 14px; line-height: 22px; color: var(--text-body); }

/* ===== CAMPUS LIFE (was We Help) ===== */
.we-help-section { padding: 4rem 0; }
.we-help-section .imgs-grid {
  display: grid;
  grid-template-columns: repeat(27, 1fr);
  position: relative;
}

.we-help-section .imgs-grid .grid { position: relative; }
.we-help-section .imgs-grid .grid img { border-radius: 20px; max-width: 100%; }
.we-help-section .imgs-grid .grid.grid-1 { grid-column: 1 / span 18; grid-row: 1 / span 27; }
.we-help-section .imgs-grid .grid.grid-2 { grid-column: 19 / span 27; grid-row: 1 / span 5; padding-left: 20px; }
.we-help-section .imgs-grid .grid.grid-3 { grid-column: 14 / span 16; grid-row: 6 / span 27; padding-top: 20px; }

.custom-list { width: 100%; }
.custom-list li {
  display: inline-block;
  width: calc(50% - 20px);
  margin-bottom: 12px;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}
.custom-list li:before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  position: absolute;
  left: 0; top: 8px;
}

/* ===== FEATURED FACULTY (Faculty Cards) ===== */
.popular-product { padding: 4rem 0; background-color: #f8f9fa; }

.faculty-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.faculty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.faculty-card .thumbnail {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 1;
}

.faculty-card .thumbnail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: var(--bg-light);
  border-radius: 50%;
  z-index: -1;
  transition: 0.3s all ease;
}

.faculty-card:hover .thumbnail::before {
  background: var(--accent);
}

.faculty-card .thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.faculty-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.faculty-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.faculty-card .view-profile {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.faculty-card .view-profile:hover {
  color: var(--accent);
}

.faculty-card .view-profile i {
  margin-left: 5px;
  transition: 0.3s;
}

.faculty-card .view-profile:hover i {
  transform: translateX(5px);
}

/* ===== TESTIMONIALS ===== */
.testimonial-section {
  padding: 100px 0;
  background-color: #f1f4f2; /* Soft, very light institutional green/gray */
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 5%;
  font-size: 300px;
  color: rgba(59, 93, 80, 0.05);
  font-family: serif;
  line-height: 1;
}

.testimonial-slider-wrap { position: relative; z-index: 2; }
.testimonial-slider-wrap .tns-inner { padding-top: 30px; }

.testimonial-block {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  margin: 20px;
  transition: transform 0.3s ease;
}

.testimonial-slider-wrap .item .testimonial-block blockquote {
  font-size: 18px;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  border: none;
  padding: 0;
  margin-bottom: 30px !important;
}

@media (min-width: 768px) {
  .testimonial-slider-wrap .item .testimonial-block blockquote { line-height: 32px; font-size: 20px; }
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic {
  margin-bottom: 15px;
}

.testimonial-slider-wrap .item .testimonial-block .author-info .author-pic img {
  max-width: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  padding: 3px;
}

.testimonial-slider-wrap .item .testimonial-block .author-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.testimonial-slider-wrap .item .testimonial-block .author-info .position {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}
.testimonial-slider-wrap #testimonial-nav {
  position: absolute;
  top: 50%; z-index: 99;
  width: 100%;
  display: none;
}
@media (min-width: 768px) {
  .testimonial-slider-wrap #testimonial-nav { display: block; }
}
.testimonial-slider-wrap #testimonial-nav > span {
  cursor: pointer;
  position: absolute;
  width: 58px; height: 58px;
  line-height: 58px;
  border-radius: 50%;
  background: rgba(59,93,80,0.1);
  color: var(--text-dark);
  transition: .3s all ease;
}
.testimonial-slider-wrap #testimonial-nav > span:hover { background: var(--primary); color: #fff; }
.testimonial-slider-wrap #testimonial-nav .prev { left: -10px; }
.testimonial-slider-wrap #testimonial-nav .next { right: 0; }
.testimonial-slider-wrap .tns-nav {
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
}
.testimonial-slider-wrap .tns-nav button {
  background: none; border: none;
  display: inline-block; position: relative;
  width: 0 !important; height: 7px !important;
  margin: 2px;
}
.testimonial-slider-wrap .tns-nav button:active,
.testimonial-slider-wrap .tns-nav button:focus,
.testimonial-slider-wrap .tns-nav button:hover { outline: none; box-shadow: none; background: none; }
.testimonial-slider-wrap .tns-nav button:before {
  display: block;
  width: 7px; height: 7px;
  left: 0; top: 0;
  position: absolute; content: "";
  border-radius: 50%;
  transition: .3s all ease;
  background-color: #d6d6d6;
}
.testimonial-slider-wrap .tns-nav button:hover:before,
.testimonial-slider-wrap .tns-nav button.tns-nav-active:before { background-color: var(--primary); }

/* ===== BLOG / EVENTS ===== */
.before-footer-section { padding: 7rem 0 12rem 0 !important; }
.blog-section { padding: 7rem 0 12rem 0; }
.blog-section .post-entry a { text-decoration: none; }
.blog-section .post-entry .post-thumbnail { display: block; margin-bottom: 20px; }
.blog-section .post-entry .post-thumbnail img { border-radius: 20px; transition: .3s all ease; }
.blog-section .post-entry .post-content-entry { padding-left: 15px; padding-right: 15px; }
.blog-section .post-entry .post-content-entry h3 { font-size: 16px; font-weight: 600; margin-bottom: 7px; }
.blog-section .post-entry .post-content-entry .meta { font-size: 14px; }
.blog-section .post-entry .post-content-entry .meta a { font-weight: 600; }
.blog-section .post-entry:hover .post-thumbnail img { opacity: .7; }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 100px 0;
  background-color: #f8f9fa; /* Very light gray */
}

.newsletter-card {
  background: linear-gradient(135deg, var(--primary) 0%, #2b453b 100%);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(59, 93, 80, 0.2);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Decorative background elements */
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(249, 191, 41, 0.15);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}
.newsletter-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}

.newsletter-section .subscription-form h3 { 
  font-size: 32px; 
  font-weight: 700; 
  color: #fff; 
  margin-bottom: 10px !important;
}

.newsletter-section .subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

.newsletter-section .subscription-form .form-control {
  height: 55px;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: "Inter", sans-serif;
  min-width: 100%;
  padding-left: 20px;
  backdrop-filter: blur(10px);
}

.newsletter-section .subscription-form .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-section .subscription-form .form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 15px rgba(249, 191, 41, 0.3);
}

.newsletter-section .subscription-form .btn { 
  height: 55px;
  border-radius: 30px !important;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 0 30px;
  border: none;
  transition: all 0.3s ease;
}

.newsletter-section .subscription-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(249, 191, 41, 0.4);
}

/* ===== FOOTER ===== */
.footer-section {
  padding: 80px 0 30px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
}
.footer-section p { color: rgba(255, 255, 255, 0.7); }
.footer-section .relative { position: relative; }
.footer-section a { text-decoration: none; color: rgba(255, 255, 255, 0.7); transition: .3s; }
.footer-section a:hover { color: #ffffff; }
.footer-section .sofa-img { position: absolute; top: -200px; z-index: 1; right: 0; }
.footer-section .sofa-img img { max-width: 380px; }
.footer-section .links-wrap { margin-top: 0; }
@media (min-width: 992px) { .footer-section .links-wrap { margin-top: 54px; } }
.footer-section .links-wrap ul li { margin-bottom: 10px; }
.footer-section .footer-logo-wrap .footer-logo {
  font-size: 32px; font-weight: 500;
  text-decoration: none;
  color: #ffffff;
}
.footer-section .footer-logo-wrap .footer-logo span { color: var(--accent); }
.footer-section .custom-social li { margin: 2px; display: inline-block; }
.footer-section .custom-social li a {
  width: 40px; height: 40px;
  text-align: center; line-height: 40px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
}
.footer-section .custom-social li a:hover { background: var(--accent); color: var(--primary); }
.footer-section .border-top { border-color: rgba(255, 255, 255, 0.1); margin-top: 30px; }
.footer-section .border-top.copyright { font-size: 14px !important; }

/* ===== FORMS ===== */
.form-control {
  height: 50px; border-radius: 10px;
  font-family: "Inter", sans-serif;
}
.form-control:active, .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.2);
}
.form-control::placeholder { font-size: 14px; }
textarea { height: auto !important; }

.service { line-height: 1.5; }
.service .service-icon {
  border-radius: 10px;
  flex: 0 0 50px;
  height: 50px; line-height: 50px;
  text-align: center;
  background: var(--primary);
  margin-right: 20px;
  color: #ffffff;
}
.untree_co-section { padding: 4rem 0; }

/* ===== FACULTY CARDS ===== */
.faculty-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all .4s ease;
  border: 1px solid #e2e8f0;
}
.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(59,93,80,0.15);
}
.faculty-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.faculty-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.faculty-card:hover .faculty-img-wrap img { transform: scale(1.08); }
.faculty-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(59,93,80,0.9));
  padding: 40px 20px 20px;
  opacity: 0;
  transition: opacity .4s ease;
}
.faculty-card:hover .faculty-overlay { opacity: 1; }
.faculty-social { display: flex; gap: 12px; justify-content: center; }
.faculty-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s ease;
  backdrop-filter: blur(4px);
}
.faculty-social a:hover { background: var(--accent); color: var(--primary); transform: scale(1.1); }
.faculty-info {
  padding: 20px;
  text-align: center;
}
.faculty-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.faculty-info h3 a { text-decoration: none; color: var(--text-dark); }
.faculty-info h3 a:hover { color: var(--primary); }
.faculty-role {
  display: block;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.faculty-dept {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: rgba(249,191,41,0.5);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.faculty-bio {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-body);
}

/* ===== DEPARTMENT FILTER ===== */
.department-filter-section { padding: 4rem 0 2rem; }
.department-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.dept-filter-btn {
  padding: 10px 24px;
  border: 2px solid #e2e8f0;
  border-radius: 30px;
  background: transparent;
  color: var(--text-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all .3s ease;
  font-family: "Inter", sans-serif;
}
.dept-filter-btn:hover,
.dept-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ===== MISC ===== */
.site-blocks-table { overflow: auto; }
.thankyou-icon { position: relative; color: var(--primary); }
.thankyou-icon:before {
  position: absolute; content: "";
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(59,93,80,0.2);
}
