* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #222;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background: #fff;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  margin: auto;
  width: 100%;
  padding: 0 20px;
  max-width: 1240px;
}

@media (max-width: 575px) {
  .container {
    padding: 0 15px;
  }
}
.top-header {
  padding: 12px 0;
  background: #214d59;
}

@media (max-width: 767px) {
  .top-header {
    display: none;
  }
}
.top-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-contact a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  gap: 10px;
}

.top-contact a i {
  color: #16c7c5;
  font-size: 18px;
}

.top-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-auth i {
  color: #16c7c5;
}

.top-auth a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-auth a:hover {
  color: #16c7c5;
}

.top-auth span {
  color: #fff;
  font-size: 16px;
}

.main-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ededed;
  transition: all 0.4s ease;
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.3s ease-out;
}

.main-header.sticky .header-wrapper {
  min-height: 100px;
}

@media (max-width: 767px) {
  .main-header.sticky .header-wrapper {
    min-height: 80px;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 96px;
  gap: 30px;
  transition: min-height 0.3s ease;
}

@media (max-width: 767px) {
  .header-wrapper {
    min-height: 80px;
    gap: 12px;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 15px;
  min-width: 430px;
}

@media (max-width: 1199px) {
  .logo {
    min-width: 0;
  }
}
@media (max-width: 991px) {
  .logo {
    min-width: 0;
    flex: 1;
    max-width: calc(100% - 70px);
  }
}
@media (max-width: 575px) {
  .logo {
    gap: 10px;
  }
}
.logo img {
  width: 78px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .logo img {
    width: 64px;
  }
}
@media (max-width: 575px) {
  .logo img {
    width: 54px;
  }
}
.logo .logo-content {
  display: flex;
  flex-direction: column;
}

.logo .logo-content h2 {
  margin: 0;
  color: #374151;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  white-space: normal;
}

@media (max-width: 991px) {
  .logo .logo-content h2 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .logo .logo-content h2 {
    font-size: 17px;
    line-height: 1.2;
  }
}
.logo .logo-content p {
  margin-top: 4px;
  color: #444;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .logo .logo-content p {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .logo .logo-content p {
    font-size: 12px;
    line-height: 1.2;
  }
}
.navbar {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

@media (max-width: 991px) {
  .navbar {
    display: none;
  }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1199px) {
  .nav-menu {
    gap: 22px;
  }
}
.nav-menu > li {
  position: relative;
}

.nav-menu > li > a, .nav-menu > li > button {
  display: flex;
  align-items: center;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  gap: 6px;
  transition: 0.3s ease;
}

@media (max-width: 1199px) {
  .nav-menu > li > a, .nav-menu > li > button {
    font-size: 15px;
  }
}
.nav-menu > li > a:hover, .nav-menu > li > button:hover {
  color: #214d59;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-btn i {
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  z-index: 999;
  top: calc(100% + 12px);
  right: 0;
  border-radius: 8px;
  width: 240px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu li {
  margin-bottom: 8px;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu li a {
  border-radius: 6px;
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  gap: 14px;
  background: #f5f7f8;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  color: #214d59;
  background: #edf7f8;
}

.dropdown-menu li a i {
  width: 18px;
  color: #666;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  display: none;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.mobile-toggle span {
  position: absolute;
  border-radius: 20px;
  width: 30px;
  height: 3px;
  background: #214d59;
  transition: 0.4s;
}

.mobile-toggle span:nth-child(1) {
  transform: translateY(-9px);
}

.mobile-toggle span:nth-child(3) {
  transform: translateY(9px);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100vh;
  background: #fff;
  transition: all 0.35s ease;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

@media (max-width: 767px) {
  .mobile-menu {
    right: -100%;
    width: 100%;
  }
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #214d59;
}

.mobile-menu-header img {
  width: auto;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 150px;
}

.mobile-menu-header .close-menu {
  color: #fff;
  font-size: 45px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.mobile-nav {
  padding: 20px;
}

.mobile-nav > li {
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav > li > a, .mobile-nav > li > button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  color: #222;
  font-weight: 600;
  font-size: 18px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: all 0.35s ease;
}

.mobile-dropdown-btn i {
  font-size: 12px;
  transition: 0.3s ease;
}

.mobile-dropdown-btn:hover {
  color: #214d59;
}

.mobile-dropdown-menu {
  display: none;
  padding: 0 10px 15px 10px;
  background: #f8fafc;
}

.mobile-dropdown-menu li {
  margin-bottom: 8px;
}

.mobile-dropdown-menu li:last-child {
  margin-bottom: 0;
}

.mobile-dropdown-menu li a {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  gap: 14px;
  background: #fff;
  transition: 0.3s;
}

.mobile-dropdown-menu li a:hover {
  color: #214d59;
  background: #edf7f8;
}

.mobile-dropdown-menu li a i {
  width: 18px;
  color: #214d59;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown.active .mobile-dropdown-btn {
  color: #214d59;
}

.mobile-dropdown.active .mobile-dropdown-btn i {
  transform: rotate(180deg);
}

.announcement-bar {
  padding: 12px 0;
  background: #2e6466;
  overflow: hidden;
}

.announcement-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.announcement-label {
  z-index: 2;
  flex-shrink: 0;
  padding-right: 15px;
  background: #2e6466;
}

.announcement-label strong {
  color: #ff1d48;
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .announcement-label strong {
    font-size: 14px;
  }
}
.announcement-content {
  position: relative;
  flex-grow: 1;
  overflow: hidden;
}

.scrolling-text {
  display: inline-block;
  color: #fff;
  font-size: 17px;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

@media (max-width: 767px) {
  .scrolling-text {
    font-size: 14px;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.footer {
  padding-top: 70px;
  color: #fff;
  background: #438b84;
}

.footer-wrapper {
  display: grid;
  padding-bottom: 50px;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 80px;
}

@media (max-width: 991px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.footer-col h3 {
  margin-bottom: 28px;
  color: #fff;
  font-weight: 700;
  font-size: 38px;
}

@media (max-width: 767px) {
  .footer-col h3 {
    font-size: 30px;
  }
}
.footer-col p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.9;
  max-width: 420px;
}

.footer-social {
  margin-top: 30px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.35s ease;
}

.footer-social a:hover {
  color: #438b84;
  transform: translateY(-4px);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links li a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  gap: 10px;
  transition: all 0.35s ease;
}

.footer-links li a i {
  font-size: 12px;
}

.footer-links li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  gap: 16px;
  line-height: 1.8;
}

.footer-contact li span {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.25);
}

.footer-contact li span i {
  color: #fff;
  font-size: 18px;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.8;
}

.footer-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #234d5a 0%, #264f5d 50%, #2a5865 100%);
}

@media (max-width: 991px) {
  .hero {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .hero {
    padding: 60px 0;
  }
}
.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}

@media (max-width: 991px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.hero-content {
  flex: 1;
  max-width: 650px;
}

@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
  }
}
.hero-content h1 {
  margin: 18px 0 40px;
  color: #fff;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.15;
}

@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 33px;
  }
}
.hero-subtitle {
  display: inline-block;
  color: #16c7c5;
  font-weight: 500;
  font-size: 22px;
}

@media (max-width: 767px) {
  .hero-subtitle {
    font-size: 18px;
  }
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 991px) {
  .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .hero-buttons {
    width: 100%;
    flex-direction: column;
  }
}
.btn-primary, .btn-outline {
  border-radius: 14px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  font-weight: 600;
  font-size: 18px;
  gap: 10px;
  transition: all 0.35s ease;
}

@media (max-width: 575px) {
  .btn-primary, .btn-outline {
    width: 100%;
  }
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #34b3a5, #3fc8ba);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(22, 199, 197, 0.3);
}

.btn-outline {
  border: 2px solid #10f0f0;
  color: #fff;
  background: rgba(0, 0, 0, 0);
}

.btn-outline i {
  font-size: 18px;
}

.btn-outline:hover {
  color: #1f4652;
  background: #10f0f0;
}

.hero-image {
  position: relative;
  width: 520px;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .hero-image {
    width: 470px;
  }
}
@media (max-width: 991px) {
  .hero-image {
    width: 100%;
    max-width: 520px;
  }
}
.image-grid {
  position: relative;
  z-index: 2;
  border: 5px solid rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  overflow: hidden;
  background: #fff;
}

.grid-item {
  height: 245px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .grid-item {
    height: 180px;
  }
}
.grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.08);
}

.hero-plus {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 767px) {
  .hero-plus {
    width: 90px;
    height: 90px;
  }
}
.hero-plus i {
  color: #fff;
  font-size: 38px;
}

@media (max-width: 767px) {
  .hero-plus i {
    font-size: 28px;
  }
}
.hero-plus::before {
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
  inset: -15px;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
}

.circle-1 {
  z-index: 1;
  bottom: -25px;
  left: -35px;
  width: 95px;
  height: 95px;
  background: #d4d856;
}

.circle-2 {
  z-index: 1;
  top: -25px;
  right: -35px;
  border: 4px solid #2cc5b8;
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0);
}

@keyframes floatCircle {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.circle-1, .circle-2 {
  animation: floatCircle 4s ease-in-out infinite;
}

.quick-access {
  padding: 90px 0;
  background: #f8fafb;
}

@media (max-width: 991px) {
  .quick-access {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .quick-access {
    padding: 60px 0;
  }
}
.section-heading {
  margin-bottom: 60px;
  text-align: center;
}

.section-heading h2 {
  color: #222;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 28px;
  }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 45px 35px;
  background: #fff;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.service-card:hover .service-icon {
  background: rgba(22, 199, 197, 0.15);
}

.service-card:hover .service-icon i {
  color: #214d59;
}

.service-card h3 {
  margin-bottom: 18px;
  color: #222;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
}

@media (max-width: 1199px) {
  .service-card h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .service-card h3 {
    font-size: 24px;
  }
}
.service-card p {
  margin-bottom: 25px;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .service-card p {
    font-size: 16px;
  }
}
.service-card a {
  display: inline-flex;
  align-items: center;
  color: #16c7c5;
  font-weight: 700;
  font-size: 18px;
  gap: 6px;
  transition: all 0.35s ease;
}

.service-card a i {
  font-size: 13px;
}

.service-card a:hover {
  color: #214d59;
  gap: 10px;
}

.service-icon {
  margin: 0 auto 28px;
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #edf7f6;
  transition: all 0.35s ease;
}

.service-icon i {
  color: #5b6675;
  font-size: 34px;
  transition: all 0.35s ease;
}

.updates-verification {
  padding: 80px 0;
  background: #fff;
}

.uv-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 991px) {
  .uv-wrapper {
    grid-template-columns: 1fr;
  }
}
.section-label {
  margin-bottom: 8px;
  display: block;
  color: #16a394;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}

.section-top {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-top h2 {
  color: #2b2b2b;
  font-weight: 700;
  font-size: 26px;
}

.view-all {
  color: #16a394;
  font-weight: 500;
  font-size: 15px;
}

.notification-list {
  height: 210px;
  padding-right: 8px;
  overflow-y: auto;
}

.notification-list::-webkit-scrollbar {
  width: 6px;
}

.notification-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #cfcfcf;
}

.notification-item {
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  display: flex;
  padding: 14px;
  gap: 12px;
  background: #fff;
}

.date-box {
  width: 46px;
  height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 46px;
  background: #f2f2f2;
}

.date-box span {
  color: #16a394;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.date-box small {
  margin-top: 4px;
  color: #16a394;
  font-weight: 700;
  font-size: 12px;
}

.notification-content {
  flex: 1;
}

.notification-content p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.badge-new {
  margin-bottom: 8px;
  border-radius: 4px;
  display: inline-block;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  background: #f54c4c;
}

.search-card {
  border-radius: 10px;
  padding: 16px;
  background: #4f5968;
}

.search-text {
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

.search-card h4 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
}

.doctor-search-form {
  border-radius: 10px;
  padding: 18px;
  background: #d9d9d9;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 25px;
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group label {
  margin-bottom: 10px;
  display: block;
  color: #222;
  font-weight: 600;
  font-size: 15px;
}

.form-group input, .form-group select {
  border: none;
  width: 100%;
  height: 38px;
  padding: 0 12px;
  font-size: 14px;
  background: #fff;
  outline: none;
}

.dob-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 5px;
}

.search-btn {
  margin: 18px auto 0;
  border-radius: 10px;
  width: 160px;
  height: 40px;
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  background: #4f5968;
  transition: 0.3s ease;
}

.search-btn:hover {
  background: #214d59;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 25px;
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group input {
  border: none;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-size: 18px;
  background: #fff;
  outline: none;
}

.full-width-banner {
  position: relative;
  margin-bottom: 0;
  width: 100%;
  height: 120px;
}

.full-width-banner img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
}

.banner-overlay h1 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.custom-about-section {
  padding: 25px 0px 50px 0;
  background: #f8fafb;
}

@media (max-width: 768px) {
  .full-width-banner, .full-width-banner img, .banner-overlay {
    height: 84px;
  }
  .banner-overlay h1 {
    font-size: 32px;
  }
}
.council-section {
  padding: 100px 0;
  background: #fff;
}

@media (max-width: 991px) {
  .council-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .council-section {
    padding: 60px 0;
  }
}
.council-intro {
  margin-top: -59px;
  margin-bottom: 70px;
  max-width: 1200px;
}

.council-intro h2 {
  margin-bottom: 20px;
  color: #1f2937;
  font-weight: 800;
  font-size: 64px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 991px) {
  .council-intro h2 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .council-intro h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .council-intro h2 {
    font-size: 32px;
  }
}
.council-intro p {
  color: #374151;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 767px) {
  .council-intro p {
    margin-top: 18px;
    font-size: 17px;
  }
}
.council-heading {
  margin-bottom: 60px;
  text-align: center;
}

.council-heading h2 {
  margin-bottom: 14px;
  color: #111827;
  font-weight: 800;
  font-size: 56px;
}

@media (max-width: 991px) {
  .council-heading h2 {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .council-heading h2 {
    font-size: 36px;
  }
}
.council-heading span {
  margin: 0 auto 25px;
  border-radius: 50px;
  width: 120px;
  height: 4px;
  display: block;
  background: #16c7c5;
}

.council-heading p {
  margin: auto;
  color: #374151;
  font-size: 20px;
  max-width: 900px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .council-heading p {
    font-size: 17px;
  }
}
.council-grid {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

@media (max-width: 1199px) {
  .council-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .council-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .council-grid {
    grid-template-columns: 1fr;
  }
}
.member-card {
  border: 1px solid #edf2f7;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  background: #fff;
  transition: all 0.35s ease;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.member-card h3 {
  margin-bottom: 10px;
  color: #1f2937;
  font-weight: 700;
  font-size: 22px;
}

@media (max-width: 767px) {
  .member-card h3 {
    font-size: 24px;
  }
}
.member-card p {
  margin-top: 15px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
}

.member-image {
  margin: 0 auto 20px;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.designation {
  border-radius: 8px;
  height: 34px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background: #3f8d84;
}

.council-bottom {
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 35px;
  background: #eef2f4;
  gap: 30px;
}

@media (max-width: 991px) {
  .council-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.role-info {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 22px;
}

@media (max-width: 991px) {
  .role-info {
    flex-direction: column;
    text-align: center;
  }
}
.role-icon {
  border-radius: 50%;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 75px;
  background: #dff3f1;
}

.role-icon i {
  color: #214d59;
  font-size: 30px;
}

.role-content {
  flex: 1;
}

.role-content h3 {
  margin-bottom: 8px;
  color: #111827;
  font-weight: 700;
  font-size: 28px;
}

@media (max-width: 767px) {
  .role-content h3 {
    font-size: 24px;
  }
}
.role-content p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .role-content p {
    max-width: 100%;
  }
}
.view-members-btn {
  border-radius: 12px;
  height: 56px;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0 28px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  gap: 10px;
  background: linear-gradient(135deg, #16c7c5, #2ea39a);
  transition: all 0.35s ease;
}

.view-members-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(22, 199, 197, 0.25);
}

.view-members-btn i {
  font-size: 14px;
}

@media (max-width: 991px) {
  .view-members-btn {
    width: 100%;
    max-width: 260px;
  }
}

/*# sourceMappingURL=council.css.map */
