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

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

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

/*==============================
CONTAINER
==============================*/
.container {
  margin: auto;
  width: 100%;
  padding: 0 20px;
  max-width: 1240px;
}
@media (max-width: 575px) {
  .container {
    padding: 0 15px;
  }
}

/*==============================
TOP HEADER
==============================*/
.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: #ffffff;
  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: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.top-auth a:hover {
  color: #16c7c5;
}
.top-auth span {
  color: #ffffff;
  font-size: 16px;
}

/*==============================
MAIN HEADER
==============================*/
.main-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #ffffff;
  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
==============================*/
.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
==============================*/
.navbar {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
@media (max-width: 991px) {
  .navbar {
    display: none;
  }
}

/*==============================
NAV MENU
==============================*/
.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
==============================*/
.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
==============================*/
.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 SIDEBAR & OVERLAY
==============================*/
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  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;
  object-fit: contain;
  max-width: 150px;
}
.mobile-menu-header .close-menu {
  color: #ffffff;
  font-size: 45px;
  background: transparent;
  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: #222222;
  font-weight: 600;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
}

/*==============================
MOBILE DROPDOWN STYLES
==============================*/
.mobile-dropdown-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #222222;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  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: #ffffff;
  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
==============================*/
.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: #ffffff;
  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
==============================*/
.footer {
  padding-top: 70px;
  color: #ffffff;
  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: #ffffff;
  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;
}

/*==============================
SOCIAL
==============================*/
.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: #ffffff;
  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: #ffffff;
}

/*==============================
LINKS
==============================*/
.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: #ffffff;
  transform: translateX(5px);
}

/*==============================
CONTACT
==============================*/
.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: #ffffff;
  font-size: 18px;
}

/*==============================
BOTTOM
==============================*/
.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: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}
.footer-bottom a:hover {
  opacity: 0.8;
}

/*==============================
HERO SECTION
==============================*/
.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
==============================*/
.hero-content {
  flex: 1;
  max-width: 650px;
}
@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
  }
}
.hero-content h1 {
  margin: 18px 0 40px;
  color: #ffffff;
  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;
  }
}

/*==============================
BUTTONS
==============================*/
.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: #ffffff;
  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: #ffffff;
  background: transparent;
}
.btn-outline i {
  font-size: 18px;
}
.btn-outline:hover {
  color: #1f4652;
  background: #10f0f0;
}

/*==============================
HERO IMAGE
==============================*/
.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: #ffffff;
}

.grid-item {
  height: 245px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .grid-item {
    height: 180px;
  }
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.grid-item:hover img {
  transform: scale(1.08);
}

/*==============================
PLUS ICON
==============================*/
.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%);
  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: #ffffff;
  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;
}

/*==============================
DECORATIVE CIRCLES
==============================*/
.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: transparent;
}

/*==============================
ANIMATION
==============================*/
@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 SERVICES
==============================*/
.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
==============================*/
.section-heading {
  margin-bottom: 60px;
  text-align: center;
}
.section-heading h2 {
  color: #222222;
  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
==============================*/
.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
==============================*/
.service-card {
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 45px 35px;
  background: #ffffff;
  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: #222222;
  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
==============================*/
.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
=================================*/
.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 TITLE
=================================*/
.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 AREA
=================================*/
.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 #eeeeee;
  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;
}

/*=================================
DOCTOR SEARCH BOX
=================================*/
.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;
}

/*=================================
INNER FORM
=================================*/
.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 BUTTON
=================================*/
.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;
  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: #ffffff;
  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;
  }
}
/*=================================
ABOUT SECTION
==================================*/
.about-section {
  padding: 100px 0 50px 0;
  /* Reduced bottom padding */
  background: #f8fafb;
}
@media (max-width: 991px) {
  .about-section {
    padding: 80px 0 40px 0;
  }
}
@media (max-width: 767px) {
  .about-section {
    padding: 60px 0 30px 0;
  }
}

.about-wrapper {
  margin-bottom: 50px;
  display: grid;
  align-items: center;
  /* Reduced margin to tighten spacing */
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*=================================
ABOUT CONTENT
==================================*/
.about-content h2 {
  margin-bottom: 25px;
  color: #1f2937;
  font-weight: 700;
  font-size: 58px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  .about-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .about-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .about-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .about-content h2 {
    font-size: 28px;
  }
}
.about-content p {
  margin-bottom: 15px;
  color: #374151;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
  /* Desktop view */
}
@media (max-width: 767px) {
  .about-content p {
    font-size: 17px;
    /* Professional text size for mobile */
    line-height: 1.8;
    /* Comfortable spacing between lines */
    text-align: left;
    /* Left alignment removes irregular word spacing */
  }
}

.about-btn {
  margin-top: 15px;
  border-radius: 12px;
  height: 58px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  min-width: 180px;
  background: linear-gradient(135deg, #16c7c5, #2ea39a);
  transition: all 0.35s ease;
}
.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(22, 199, 197, 0.25);
}

/*=================================
ABOUT IMAGE
==================================*/
.about-image img {
  border-radius: 18px;
  width: 100%;
  height: 650px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .about-image img {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .about-image img {
    height: 380px;
  }
}

/*=================================
MISSION VISION
==================================*/
.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  color: #1f2937;
  font-weight: 700;
  font-size: 54px;
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
  }
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
@media (max-width: 991px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/*=================================
MISSION CARD
==================================*/
.mission-card {
  position: relative;
  border: 1px solid #edf2f7;
  border-radius: 18px;
  padding: 40px;
  background: #f8fafb;
  transition: all 0.35s ease;
}
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.mission-card h3 {
  margin-bottom: 20px;
  color: #1f2937;
  font-weight: 700;
  font-size: 38px;
}
@media (max-width: 767px) {
  .mission-card h3 {
    font-size: 30px;
  }
}
.mission-card p {
  margin-bottom: 30px;
  color: #374151;
  font-size: 17px;
  line-height: 1.8;
}
.mission-card a {
  border-radius: 10px;
  height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  min-width: 150px;
  background: linear-gradient(135deg, #16c7c5, #2ea39a);
  transition: all 0.35s ease;
}
.mission-card a:hover {
  transform: translateY(-2px);
}

/*=================================
CARD ICON
==================================*/
.card-icon {
  margin-bottom: 25px;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e8f5f4;
}
.card-icon i {
  color: #214d59;
  font-size: 28px;
}

.mission-section {
  padding: 50px 0 100px 0;
  /* Reduced top padding to close gap from about section */
  background: #ffffff;
}
@media (max-width: 991px) {
  .mission-section {
    padding: 40px 0 80px 0;
  }
}
@media (max-width: 767px) {
  .mission-section {
    padding: 30px 0 60px 0;
  }
}

.vision-section {
  padding: 100px 0;
  background: #f8fafb;
}
@media (max-width: 991px) {
  .vision-section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .vision-section {
    padding: 60px 0;
  }
}

/* Mission: Left Content, Right Image */
.mission-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}
@media (max-width: 991px) {
  .mission-wrapper {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Vision: Left Image, Right Content */
.vision-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
@media (max-width: 991px) {
  .vision-wrapper {
    display: flex;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*=================================
CONTENT STYLING
==================================*/
.mission-content h2,
.vision-content h2 {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
  color: #1f2937;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.2;
}
.mission-content h2::after,
.vision-content h2::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
  width: 60px;
  height: 4px;
  content: "";
  background: linear-gradient(135deg, #16c7c5, #2ea39a);
}
@media (max-width: 1199px) {
  .mission-content h2,
  .vision-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .mission-content h2,
  .vision-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .mission-content h2,
  .vision-content h2 {
    font-size: 28px;
  }
}
.mission-content p,
.vision-content p {
  color: #374151;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 767px) {
  .mission-content p,
  .vision-content p {
    font-size: 17px;
    line-height: 1.7;
  }
}

/*=================================
IMAGE STYLING
==================================*/
.mission-image img,
.vision-image img {
  border-radius: 24px;
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease;
}
.mission-image img:hover,
.vision-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  .mission-image img,
  .vision-image img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .mission-image img,
  .vision-image img {
    border-radius: 16px;
    height: 280px;
  }
}

/*=================================
NOTIFICATION PAGE BANNER
==================================*/
.full-width-banner {
  position: relative;
  margin-bottom: 0;
  width: 100%;
  height: 120px;
}
.full-width-banner img {
  width: 100%;
  height: 100%;
  display: block;
  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: #ffffff;
  font-weight: 700;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .full-width-banner {
    height: 84px;
  }
  .banner-overlay h1 {
    font-size: 32px;
  }
}
/*=================================
NOTIFICATION SECTION
==================================*/
.notification-section {
  padding: 80px 0;
  background: #f8fafb;
}
@media (max-width: 991px) {
  .notification-section {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .notification-section {
    padding: 40px 0;
  }
}

/*=================================
SCROLLABLE NOTIFICATION LIST
==================================*/
.notification-list-details {
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  gap: 20px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #16c7c5 #f8fafb;
  /* Webkit custom scrollbar */
}
.notification-list-details::-webkit-scrollbar {
  width: 6px;
}
.notification-list-details::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #f8fafb;
}
.notification-list-details::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #16c7c5;
}
.notification-list-details::-webkit-scrollbar-thumb:hover {
  background: #12a3a1;
}

/*=================================
NOTIFICATION ITEM
==================================*/
.notification-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 20px 25px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.notification-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .notification-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
  }
}

.notification-date {
  border-radius: 10px;
  height: 75px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 10px;
  color: #16c7c5;
  background: #e8f5f4;
  min-width: 75px;
}
.notification-date .date-day {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.notification-date .date-month {
  margin-top: 4px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .notification-date {
    width: 35%;
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 15px;
    gap: 8px;
    min-width: unset;
  }
  .notification-date .date-month {
    margin-top: 0;
  }
}

.notification-text {
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
}
.notification-text p {
  margin: 0;
  color: #374151;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .notification-text {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.badge-new {
  border-radius: 4px;
  flex-shrink: 0;
  padding: 4px 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  background: #ff4d4f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

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