

:root{
      --primary:#00beb4;
      --primary-dark:#008b84;
    }



.navbar { background:#fff; box-shadow:0 2px 12px rgba(0,0,0,.08); padding:1rem 0; }
    .navbar-brand img { height:44px; }
    .nav-link { font-weight:500; color:#333!important; padding:.5rem 1rem!important; transition:color .2s; }
    .nav-link:hover,.nav-link.active { color:var(--primary)!important; }
    .btn-book { background:var(--primary); color:#fff!important; border-radius:30px; padding:.45rem 1.4rem!important; font-weight:600; }
    .btn-book:hover { background:var(--primary-dark); }



/* =========================
   Footer
========================= */

.footer-section {
  background: #fff;
  color: #000;
  padding: 70px 0 25px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 20px;
}

.footer-text {
  color: #000;
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #00b4d8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #00b4d8;
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #00b4d8;
  transform: translateY(-3px);
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 15px;
}

.contact-info i {
  color: #00b4d8;
  margin-top: 4px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 45px 0 20px;
}

.footer-bottom {
  text-align: center;
  color: rgba(0,0,0,0.6);
  margin-bottom: 0;
  font-size: 14px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .footer-section {
    padding: 60px 0 20px;
  }
}

@media (max-width: 767px) {

  .footer-section {
    text-align: center;
  }

  .footer-text {
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-title {
    margin-top: 10px;
  }
}



.hero-section{
    min-height:95vh;
    background:linear-gradient(135deg,#00beb4 0%,#008b84 100%);
    color:#fff;
    padding:100px 0;
}

.hero-content h1{
    font-size:4rem;
    font-weight:700;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content p{
    font-size:1.2rem;
    color:rgba(255,255,255,0.9);
    margin-bottom:35px;
}

.btn-primary-custom{
    background:#597c93;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.btn-primary-custom:hover{
    background:#446579;
    color:#fff;
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#00beb4;
}

.services-section{
    background:#fff;
}

.section-header h2{
    font-size:3rem;
    font-weight:700;
    margin-bottom:20px;
}

.section-header p{
    font-size:1.1rem;
    color:#666;
    max-width:700px;
    margin:auto;
}

.service-content h3{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.service-content p{
    font-size:1.05rem;
    line-height:1.8;
    color:#555;
}

.service-tag{
    display:inline-block;
    background:rgba(0,190,180,0.1);
    color:#00beb4;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.demo-section{
    background:linear-gradient(135deg,#00beb4 0%,#007a74 100%);
    color:#fff;
}

.demo-title{
    font-size:3rem;
    font-weight:700;
}

.demo-subtitle{
    font-size:1.1rem;
    opacity:0.9;
}

.demo-card{
    background:rgba(255,255,255,0.1);
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    backdrop-filter:blur(10px);
    height:100%;
}

.demo-icon{
    font-size:40px;
    margin-bottom:15px;
}

.demo-card h4{
    font-size:1.4rem;
    margin-bottom:15px;
}

.demo-card p{
    opacity:0.9;
    line-height:1.7;
}

.calendly-wrapper{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:10px;
}

@media(max-width:991px){

    .hero-content h1{
        font-size:2.8rem;
    }

    .section-header h2{
        font-size:2.3rem;
    }

    .service-content h3{
        font-size:1.8rem;
    }

    .demo-title{
        font-size:2.3rem;
    }

}

@media(max-width:767px){

    .hero-section{
        padding:80px 0;
        min-height:auto;
    }

    .hero-content h1{
        font-size:2.2rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width:100%;
        text-align:center;
    }

}


.clients-section { background: #f8f9fa; padding: 70px 0; overflow: hidden; }
.clients-track { display: flex; gap: 50px; animation: scroll 20s linear infinite; width: max-content; }
.clients-track img { height: 50px; transition: .3s; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ====================================
   ABOUT PAGE
==================================== */

.about-hero {
  background: linear-gradient(135deg, #00beb4 0%, #008b84 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

.mission-section {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.mission-section h1 {
  font-size: 58px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
}

.mission-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

.about-box {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.15);
}

.about-box h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.about-description {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  line-height: 1.9;
  max-width: 900px;
  margin: auto;
}

.about-card {
  background: rgba(255,255,255,0.12);
  padding: 35px;
  border-radius: 24px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.about-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.16);
}

.about-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.about-icon i {
  font-size: 30px;
  color: #fff;
}

.about-card h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}

.about-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-card ul li {
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
}

.about-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: 700;
}

/* ====================================
   Responsive
==================================== */

@media (max-width: 991px) {

  .about-hero {
    padding: 100px 0 80px;
  }

  .mission-section h1 {
    font-size: 42px;
  }

  .about-box {
    padding: 40px 30px;
  }

  .about-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {

  .about-hero {
    padding: 80px 0 70px;
  }

  .mission-section {
    margin-bottom: 50px;
  }

  .mission-section h1 {
    font-size: 34px;
  }

  .mission-section p,
  .about-description {
    font-size: 16px;
  }

  .about-box {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .about-box h2 {
    font-size: 28px;
  }

  .about-card {
    padding: 28px;
  }
}


/* =========================================
   AizaMD Hero
========================================= */

.aizamd-hero {
  background: linear-gradient(135deg, #00beb4 0%, #008b84 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.aizamd-hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -200px;
  right: -150px;
}

.aizamd-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -180px;
  left: -120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
}

.partnership-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.logo-item img {
  max-width: 260px;
}

.partnership-x {
  font-size: 48px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.aizamd-hero h1 {
  font-size: 68px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.aizamd-hero p {
  color: rgba(255,255,255,0.92);
  font-size: 20px;
  line-height: 1.9;
  max-width: 850px;
  margin: auto auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #597c93;
  color: #fff;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  background: #6f94ad;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #00beb4;
}

.hipaa-badge {
  margin-top: 50px;
}

.hipaa-badge img {
  max-width: 180px;
}

/* =========================================
   Features
========================================= */

.aizamd-features {
  padding: 100px 0;
  background: #fff;
}

.section-header {
  max-width: 900px;
  margin: auto auto 80px;
}

.section-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(0,190,180,0.1);
  color: #00beb4;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.9;
}

.feature-item {
  margin-bottom: 100px;
}

.feature-image img {
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-content {
  padding: 10px 20px;
}

.feature-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(0,190,180,0.1);
  color: #00beb4;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-content h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
}

.feature-content h4 {
  font-size: 22px;
  color: #00beb4;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-content p {
  font-size: 17px;
  color: #64748b;
  line-height: 1.9;
}

.info-callout {
  background: rgba(0,190,180,0.06);
  padding: 35px;
  border-radius: 24px;
  margin-top: 20px;
}

.info-callout p {
  margin: 0;
  font-size: 18px;
  color: #334155;
}

.info-callout a {
  color: #00beb4;
  font-weight: 700;
  text-decoration: none;
}

/* =========================================
   Demo Section
========================================= */

.book-demo-section {
  background: linear-gradient(135deg, #00beb4 0%, #007a74 100%);
  padding: 100px 0;
}

.demo-title {
  font-size: 52px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

.demo-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

.demo-card {
  background: rgba(255,255,255,0.12);
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  height: 100%;
}

.demo-icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.demo-card h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}

.demo-card p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.calendly-wrapper {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 991px) {

  .aizamd-hero {
    padding: 100px 0 70px;
  }

  .aizamd-hero h1 {
    font-size: 48px;
  }

  .section-header h2,
  .demo-title {
    font-size: 40px;
  }

  .feature-content h3 {
    font-size: 34px;
  }

  .feature-item {
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {

  .aizamd-hero {
    padding: 90px 0 60px;
    min-height: auto;
  }

  .partnership-logos {
    gap: 20px;
    margin-bottom: 35px;
  }

  .logo-item img {
    max-width: 180px;
  }

  .partnership-x {
    font-size: 34px;
  }

  .aizamd-hero h1 {
    font-size: 34px;
  }

  .aizamd-hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
  }

  .section-header h2,
  .demo-title {
    font-size: 30px;
  }

  .feature-content h3 {
    font-size: 28px;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  .feature-content p,
  .section-header p,
  .info-callout p {
    font-size: 15px;
  }

  .feature-item {
    margin-bottom: 50px;
  }

  .demo-card {
    padding: 28px;
  }
}

