* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #eef6fb;
  color: #111;
}

.site-header {
  background: #08486d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 35px;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(63, 35, 35, 0.15);
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* HERO COMMON */

.hero,
.about-hero,
.contact-hero {
  background: linear-gradient(rgba(8,72,109,.82), rgba(8,72,109,.82)),
              url("/assets/images/about-nexus.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 110px 20px;
}

.hero h1,
.about-hero h1,
.contact-hero h1 {
  font-size: 46px;
  margin: 0 0 15px;
}

.hero p,
.about-hero p,
.contact-hero p {
  font-size: 19px;
  font-weight: 600;
}

/* HOME */

.login-cards {
  max-width: 900px;
  margin: -50px auto 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.card,
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.btn {
  display: inline-block;
  background: #08486d;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
}

.services,
.about-container,
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}

.service-grid,
.strength-grid,
.value-grid {
  display: grid;
  gap: 25px;
}

.service-grid,
.strength-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ABOUT */

.about-intro,
.mission-box,
.core-values,
.contact-form-box {
  background: #fff;
  padding: 42px;
  border-radius: 16px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
}

.about-intro h2,
.strength-section h2,
.core-values h2,
.contact-form-box h2 {
  color: #08486d;
  font-size: 34px;
  margin-top: 0;
}

.about-intro p,
.mission-box p,
.strength-card p {
  font-size: 18px;
  line-height: 1.8;
}

.mission-box,
.strength-card,
.value-item {
  background: #08486d;
  color: #fff;
}

.mission-box h3 {
  font-size: 30px;
  margin-top: 0;
}

.strength-card {
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.strength-icon {
  background: #fff;
  color: #08486d;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.value-item {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
}

/* CONTACT */

.contact-section {
  background: #eef6fb;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact-info {
  background: #08486d;
  color: #fff;
  padding: 42px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.contact-logo img {
  width: 240px;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
}

.contact-info h2 {
  font-size: 28px;
  line-height: 1.5;
}

.contact-details p {
  font-size: 18px;
  line-height: 1.7;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.call-box {
  background: #08486d;
  color: #fff;
  display: inline-block;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 26px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  border-radius: 9px;
  font-size: 16px;
}

.contact-form button {
  background: #08486d;
  color: #fff;
  border: 0;
  padding: 16px 30px;
  border-radius: 9px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

/* FOOTER */

.site-footer {
  background: #08486d;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  font-weight: 700;
}

/* MOBILE */

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 15px;
  }

  .logo img {
    height: 60px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: 34px;
  }

  .login-cards,
  .service-grid,
  .strength-grid,
  .value-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }
}
/* SERVICES PAGE */

.services-hero {
  background: linear-gradient(rgba(8,72,109,.85), rgba(8,72,109,.85)),
              url("/assets/images/hero-services.jpeg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 110px 20px;
}

.services-hero h1 {
  font-size: 46px;
  margin: 0 0 15px;
}

.services-hero p {
  font-size: 19px;
  font-weight: 600;
}

.services-page {
  background: #eef6fb;
  padding: 70px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-intro {
  background: #fff;
  padding: 42px;
  border-radius: 16px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
  text-align: center;
}

.service-intro h2 {
  color: #08486d;
  font-size: 34px;
  margin-top: 0;
}

.service-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.services-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-box {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
  border-top: 6px solid #08486d;
}

.service-box h3 {
  color: #08486d;
  font-size: 26px;
  margin-top: 0;
}

.service-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

@media (max-width: 768px) {
  .services-grid-full {
    grid-template-columns: 1fr;
  }

  .services-hero h1 {
    font-size: 34px;
  }
}
/* Home  PAGE */
.hero {
  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  padding: 120px 20px;
}

.hero-overlay {
  max-width: 900px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero p {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background: #fff;
  color: #08486d;
  font-weight: 700;
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-btn-outline:hover {
  background: #fff;
  color: #08486d;
}

@media (max-width: 768px) {

  .hero {
    min-height: 420px;
    padding: 90px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

}

/* FOOTER */

.site-footer {
  background: #063954;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 85px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;

  margin-bottom: 30px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
}

.footer-menu a:hover {
  color: #d4ecff;
}

.footer-contact {
  margin-bottom: 25px;
}

.footer-contact p {
  margin: 10px 0;
  font-size: 17px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 15px;
  opacity: 0.9;
}

@media (max-width: 768px) {

  .footer-menu {
    gap: 18px;
  }

  .footer-logo img {
    height: 65px;
  }

}

/* COMMON INNER PAGE HERO */

.page-hero {
  background: linear-gradient(rgba(8,72,109,.85), rgba(8,72,109,.85)),
              url("/assets/images/hero.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.page-hero h1 {
  font-size: 46px;
  margin: 0 0 15px;
}

.page-hero p {
  font-size: 20px;
  font-weight: 600;
}

/* IMAGE PROMO PAGES */

.image-page {
  background: #eef6fb;
  padding: 70px 20px;
}

.image-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.promo-card {
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.promo-card.wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .promo-card.wide {
    grid-column: span 1;
  }

  .page-hero h1 {
    font-size: 34px;
  }
}

 /* UPDATED HOME PAGE */

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background: #fff;
  color: #08486d;
  font-weight: 700;
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h2 {
  color: #08486d;
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title p {
  color: #444;
  font-size: 18px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

.home-services {
  padding-top: 80px;
}

.image-card {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.service-card-content {
  padding: 28px;
  text-align: center;
}

.service-card-content h3 {
  color: #08486d;
  font-size: 24px;
  margin-top: 0;
}

.service-card-content p {
  color: #444;
  line-height: 1.7;
  font-size: 16px;
}

.service-card-content .btn {
  margin-top: 10px;
}

.why-us {
  background: #fff;
  padding: 70px 20px;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-container h2 {
  color: #08486d;
  font-size: 36px;
  margin-bottom: 35px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-box {
  background: #eef6fb;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.why-box h3 {
  color: #08486d;
  font-size: 24px;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: auto;
  }

  .section-title h2,
  .why-container h2 {
    font-size: 30px;
  }
}
/* HEADER LOGIN BUTTONS */

.nav-login {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: .3s ease;
}

.employee-link {
  background: #800689;
  color: #08486d !important;
}

.employee-link:hover {
  background: #e747ef;;
}

.client-link {
  background: #e31b23;
  color: #fff !important;
}

.client-link:hover {
  background: #c5141c;
}
/* IMAGE SERVICE BOXES */

.image-service {
  overflow: hidden;
  padding: 0;
}

.image-service img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 28px;
}

.service-content h3 {
  color: #08486d;
  font-size: 28px;
  margin-top: 0;
}

.service-content p {
  line-height: 1.8;
  color: #444;
  font-size: 16px;
}

.service-content .btn {
  margin-top: 12px;
}

/* HERO VIDEO SECTION */

.hero-video-section {

  background:
  linear-gradient(rgba(8,72,109,.90),
  rgba(8,72,109,.90));

  padding: 90px 40px;
  color: #fff;
}

.hero-content {

  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;

  align-items: center;
}

.hero-text h1 {

  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text p {

  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 35px;

  opacity: .95;
}

.hero-video video {

  width: 100%;
  border-radius: 22px;

  box-shadow:
  0 12px 40px rgba(0,0,0,.30);

  border: 4px solid rgba(255,255,255,.15);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn {
  background: #fff;
  color: #08486d;
  font-weight: 700;
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* MOBILE */

@media (max-width: 900px) {

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 18px;
  }

}

/* ADVANCED SERVICES */

.advanced-services {
    padding: 30px 20px 10px;
}

.advanced-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.advanced-box h2 {
    text-align: center;
    color: #0a4b78;
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.advanced-box p {
    text-align: center;
    color: #555;
    max-width: 900px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advanced-column ul {
    padding-left: 20px;
}

.advanced-column li {
    margin-bottom: 14px;
    color: #222;
    line-height: 1.6;
    font-size: 17px;
}

/* MOBILE RESPONSIVE */

@media (max-width: 991px) {

    .advanced-grid {
        grid-template-columns: 1fr;
    }

    .advanced-box {
        padding: 25px;
    }

    .advanced-box h2 {
        font-size: 28px;
    }

}
/* ICON STYLE */

.advanced-column li {
    list-style: none;
    margin-bottom: 16px;
    color: #222;
    line-height: 1.6;
    font-size: 17px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.advanced-column li i {
    color: #0a4b78;
    min-width: 22px;
    margin-top: 4px;
    font-size: 18px;
}

/* HOME FACILITIES */

.home-facilities {
    padding: 20px;
}

.facility-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.facility-box h2 {
    text-align: center;
    color: #0a4b78;
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 700;
}

.facility-box p {
    text-align: center;
    color: #555;
    max-width: 850px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.facility-item {
    background: #f5f9fc;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #dce7f1;
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.facility-item i {
    font-size: 34px;
    color: #0a4b78;
    margin-bottom: 15px;
}

.facility-item span {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
}

/* MOBILE */

@media (max-width: 991px) {

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .facility-grid {
        grid-template-columns: 1fr;
    }

    .facility-box {
        padding: 25px;
    }

    .facility-box h2 {
        font-size: 28px;
    }

}
.advanced-box {
    padding: 45px 55px;
}

.advanced-column li {
    font-size: 15px;
    margin-bottom: 13px;
}
.advanced-box {
    padding: 35px 45px;
}
.advanced-column li i {
    font-size: 20px;
}
.advanced-column li {
    transition: 0.3s ease;
    padding: 5px 8px;
    border-radius: 8px;
}

.advanced-column li:hover {
    background: #f4f9fd;
    transform: translateX(5px);
}
.facility-item:hover {
    transform: translateY(-6px);
    background: #ffffff;
}
.advanced-box,
.facility-box,
.service-intro {
    border-top: 5px solid #0a4b78;
}
@media (max-width: 768px) {

    .advanced-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .advanced-column li {
        font-size: 14px;
    }

}
/* SECTION SPACING */

.advanced-services,
.home-facilities {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* SMOOTHER CARD LOOK */

.advanced-box,
.facility-box,
.service-intro {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* BUTTON HOVER */

.service-card .btn:hover {
    background: #083a5d;
    transform: translateY(-2px);
}

/* CARD IMAGE IMPROVEMENT */

.service-card img {
    transition: 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.03);
}

/* TITLE SPACING */

.service-intro h2,
.advanced-box h2,
.facility-box h2 {
    letter-spacing: -0.5px;
}
.advanced-column li {
    font-size: 16px;
    font-weight: 500;
}
/* RESOURCES PAGE */

.resources-section {
    padding: 70px 20px;
    background: #eef7fc;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    color: #0a4b78;
    font-size: 38px;
    margin-bottom: 12px;
}

.section-title p {
    color: #555;
    font-size: 17px;
}

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pdf-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    border-top: 5px solid #0a4b78;
    transition: 0.3s ease;
}

.pdf-card:hover {
    transform: translateY(-6px);
}

.pdf-icon {
    font-size: 48px;
    color: #d71920;
    margin-bottom: 20px;
}

.pdf-card h3 {
    color: #0a4b78;
    font-size: 24px;
    margin-bottom: 15px;
}

.pdf-card p {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.pdf-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pdf-btn {
    background: #0a4b78;
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.pdf-btn:hover {
    background: #083a5d;
}

.pdf-btn.outline {
    background: transparent;
    color: #0a4b78;
    border: 2px solid #0a4b78;
}

.pdf-btn.outline:hover {
    background: #0a4b78;
    color: #ffffff;
}

@media (max-width: 991px) {
    .pdf-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

/* =========================================================
   NEXUSCARE PURPLE PREMIUM THEME
   Added to convert current blue design to purple style
   ========================================================= */

:root {
  --nc-purple-dark: #2b0b5f;
  --nc-purple: #4b148c;
  --nc-purple-mid: #5b1bb2;
  --nc-purple-light: #6f2dbd;
  --nc-purple-soft: #f6f0ff;
  --nc-purple-border: #e6d8ff;
  --nc-gold: #f4a300;
}

/* GLOBAL BACKGROUND */
body,
.services-page,
.image-page,
.contact-section,
.resources-section {
  background: #f6f0ff !important;
}

/* HEADER */
.site-header {
  background: linear-gradient(90deg, #2b0b5f, #4b148c) !important;
  box-shadow: 0 6px 18px rgba(43, 11, 95, 0.18);
}

.main-nav a {
  color: #ffffff !important;
}

.main-nav a:hover {
  color: #f4a300 !important;
}

/* LOGO */
.logo img,
.footer-logo img {
  box-shadow: 0 6px 18px rgba(75, 20, 140, 0.22) !important;
}

/* HERO AREAS */
.hero,
.about-hero,
.contact-hero,
.services-hero,
.page-hero,
.hero-video-section {
  background:
    linear-gradient(rgba(43, 11, 95, .88), rgba(75, 20, 140, .88)),
    url("/assets/images/about-nexus.jpg") center/cover no-repeat !important;
  color: #ffffff !important;
}

.services-hero {
  background:
    linear-gradient(rgba(43, 11, 95, .88), rgba(75, 20, 140, .88)),
    url("/assets/images/hero-services.jpeg") center/cover no-repeat !important;
}

.page-hero {
  background:
    linear-gradient(rgba(43, 11, 95, .88), rgba(75, 20, 140, .88)),
    url("/assets/images/hero.jpg") center/cover no-repeat !important;
}

.hero-video-section,
.site-header {

background:
linear-gradient(
135deg,
#B794F4 0%,
#9F7AEA 20%,
#805AD5 45%,
#6B46C1 70%,
#553C9A 100%
);

}
/* HEADINGS */
.section-title h2,
.why-container h2,
.about-intro h2,
.strength-section h2,
.core-values h2,
.contact-form-box h2,
.service-intro h2,
.advanced-box h2,
.facility-box h2,
.service-card-content h3,
.service-content h3,
.service-box h3,
.pdf-card h3,
.why-box h3 {
  color: #4b148c !important;
}

/* BUTTONS */
.btn,
.pdf-btn,
.contact-form button,
.call-box {
  background: linear-gradient(135deg, #4b148c, #6f2dbd) !important;
  color: #ffffff !important;
  border-color: #4b148c !important;
  box-shadow: 0 6px 16px rgba(75, 20, 140, 0.20);
}

.btn:hover,
.pdf-btn:hover,
.contact-form button:hover,
.service-card .btn:hover {
  background: linear-gradient(135deg, #2b0b5f, #4b148c) !important;
  transform: translateY(-2px);
}

.hero-btn {
  background: #ffffff !important;
  color: #4b148c !important;
}

.hero-btn:hover {
  background: #f4a300 !important;
  color: #2b0b5f !important;
}

.hero-btn-outline {
  background: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
}

.hero-btn-outline:hover {
  background: #ffffff !important;
  color: #4b148c !important;
}

.pdf-btn.outline {
  background: transparent !important;
  color: #4b148c !important;
  border: 2px solid #4b148c !important;
}

.pdf-btn.outline:hover {
  background: #4b148c !important;
  color: #ffffff !important;
}

/* LOGIN BUTTONS */
.employee-link {
  background: #c134fd !important;
  color: #4b148c !important;
}

.employee-link:hover {
  background: #cd75f3 !important;
}

.client-link {
  background: #e31b23 !important;
  color: #ffffff !important;
}

.client-link:hover {
  background: #c5141c !important;
}

/* CARDS */
.card,
.service-card,
.service-box,
.about-intro,
.mission-box,
.core-values,
.contact-form-box,
.contact-info,
.strength-card,
.value-item,
.service-intro,
.advanced-box,
.facility-box,
.facility-item,
.pdf-card,
.promo-card,
.why-box {
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(75, 20, 140, 0.12) !important;
}

/* WHITE CARDS WITH PURPLE BORDER */
.card,
.service-card,
.service-box,
.about-intro,
.core-values,
.contact-form-box,
.service-intro,
.advanced-box,
.facility-box,
.pdf-card,
.promo-card {
  background: #ffffff !important;
  border-top-color: #4b148c !important;
}

/* DARK PURPLE BLOCKS */
.mission-box,
.strength-card,
.value-item,
.contact-info {
  background: linear-gradient(135deg, #2b0b5f, #4b148c) !important;
  color: #ffffff !important;
}

/* ICONS */
.strength-icon {
  color: #4b148c !important;
}

.advanced-column li i,
.facility-item i {
  color: #5b1bb2 !important;
}

.pdf-icon {
  color: #e31b23 !important;
}

/* SOFT CARDS */
.why-box,
.facility-item {
  background: #ffffff !important;
  border: 1px solid #e6d8ff !important;
}

.facility-item:hover,
.advanced-column li:hover {
  background: #f6f0ff !important;
}

/* TEXT LINKS */
.contact-details a,
.footer-contact a,
.footer-menu a {
  color: #ffffff !important;
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: #f4a300 !important;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #2b0b5f, #4b148c) !important;
  color: #ffffff !important;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.18) !important;
}

/* HERO VIDEO BORDER */
.hero-video video {
  border: 4px solid rgba(255, 255, 255, .18) !important;
  box-shadow: 0 14px 45px rgba(43, 11, 95, .35) !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .site-header {
    background: linear-gradient(180deg, #2b0b5f, #4b148c) !important;
  }
}

body {
    background: #F8F5FF;
}
.service-card,
.why-box,
.pdf-card {

background: rgba(255,255,255,0.92);

backdrop-filter: blur(8px);

border: 1px solid rgba(124,58,237,0.10);

}

.site-header {

background:
linear-gradient(
180deg,
#E9D5FF 0%,
#C4B5FD 18%,
#A78BFA 42%,
#8B5CF6 72%,
#7C3AED 100%
);

}
.employee-link {

    background:
    linear-gradient(135deg,#C084FC,#A855F7);

    color: #fff !important;

    box-shadow:
    0 4px 14px rgba(168,85,247,.35);
}

.client-link {

    background:
    linear-gradient(135deg,#FB7185,#F43F5E);

    color: #fff !important;

    box-shadow:
    0 4px 14px rgba(244,63,94,.30);
}
.employee-link {

    background:
    linear-gradient(135deg,#C084FC,#A855F7);

    color: #fff !important;

    box-shadow:
    0 4px 14px rgba(168,85,247,.35);
}

.client-link {

    background:
    linear-gradient(135deg,#FB7185,#F43F5E);

    color: #fff !important;

    box-shadow:
    0 4px 14px rgba(244,63,94,.30);
}

/* PREMIUM CLEAN HERO */
.hero-video-section {

    position: relative;

    overflow: hidden;

    padding: 90px 40px;

    color: #ffffff;

    background:

    radial-gradient(
        circle at top left,
        rgba(255,255,255,0.18) 0%,
        transparent 30%
    ),

    linear-gradient(
        180deg,
        #5B21B6 0%,
        #5B21B6 18%,
        #5B21B6 38%,
        #6D28D9 58%,
        #8B5CF6 78%,
        #C4B5FD 100%
    );

}
.site-header {

background:
linear-gradient(
90deg,
#5B21B6 0%,
#5B21B6 35%,
#5B21B6 100%
);

border-bottom:
1px solid rgba(255,255,255,0.08);

}
.hero-video video,
.hero-video img {

border-radius: 24px;

border:
4px solid rgba(255,255,255,0.35);

box-shadow:
0 20px 50px rgba(91,33,182,0.25);

}