* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #f8fafc;
}

/* ================= NAVBAR ================= */

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 0;
  z-index:1000;
}

.container-nav{
  width:90%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo-nav img{
  height:50px;
}

/* NAV LINKS */

.nav-links-nav{
  display:flex;
  align-items:center;
  gap:25px;
  background:#f5f5f5;
  padding:18px 40px;
  border-radius:40px;
}

.nav-links-nav a,
.dropbtn-nav{
  text-decoration:none;
  color:#64748b;
  font-size:15px;
  background:none;
  border:none;
  cursor:pointer;
}

.nav-links-nav a:hover,
.dropbtn-nav:hover{
  color:#0284c7;
}

/* MAIN DROPDOWN */

.dropdown-nav{
  position:relative;
}

.dropdown-content-nav{
  position:absolute;
  top:20px;
  left:0;

  width:260px;
  background:white;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);

  display:none;
  flex-direction:column;
  padding:10px 0;
}

.dropdown-nav:hover .dropdown-content-nav{
  display:flex;
}

/* MENU ITEM */

.menu-item{
  position:relative;
}

.menu-item > a{
  display:block;
  padding:10px 18px;
  color:#475569;
}

.menu-item > a:hover{
  background:#f1f5f9;
  color:#0284c7;
}

/* SUBMENU RIGHT SIDE */

.submenu{
  position:absolute;
  top:0;
  left:100%;

  width:260px;
  background:white;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);

  display:none;
  flex-direction:column;
  padding:10px 0;
}

/* SHOW SUBMENU */

.menu-item:hover .submenu{
  display:flex;
}

/* SUBMENU LINKS */

.submenu a{
  padding:10px 18px;
  color:#475569;
  font-size:14px;
}

.submenu a:hover{
  background:#f1f5f9;
  color:#0284c7;
}

/* BUTTON */

.btn-nav{
  padding:10px 20px;
  border-radius:30px;
  background:linear-gradient(to right,#0284c7,#2563eb);
  color:white;
  text-decoration:none;
  font-size:14px;
}

.btn-nav:hover{
  box-shadow:0 0 20px rgba(2,132,199,0.4);
}

/* MOBILE TOGGLE BUTTON */

.menu-toggle-nav{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#0284c7;

}


/* MOBILE RESPONSIVE */

@media(max-width:1024px){

  .menu-toggle-nav{
    display:block;
  }

  .nav-btn-nav{
    display:none;
  }
  
  .nav-links-nav{
    position:absolute;
    top:90px;
    left:0;
    width:100%;

    flex-direction:column;
    align-items:flex-start;

    background:white;
    padding:25px;

    border-radius:0;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);

    display:none;
  }

  /* show menu */

  .nav-links-nav.mobile-active-nav{
    display:flex;
  }

  /* show toggle */

  .menu-toggle-nav{
    display:block;
  }

  /* dropdown full width */

  .dropdown-content-nav{
    position:static;
    width:100%;
    box-shadow:none;
    display:none;
    padding-left:15px;
  }

  .dropdown-nav.active-nav .dropdown-content-nav{
    display:flex;
  }

  /* submenu mobile */

  .submenu{
    position:static;
    width:100%;
    box-shadow:none;
    display:none;
    padding-left:20px;
  }

  .menu-item.active-submenu .submenu{
    display:flex;
  }

  /* nav items full width */

  .nav-links-nav a,
  .dropbtn-nav{
    width:100%;
    padding:12px 0;
    text-align:left;
  }

}

/* ================= HERO ================= */

.hero {
  height: 80vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/DWI/Projects/VidaFinal/public/hospital11.jpg') center/cover no-repeat;
  animation: moveBg 30s infinite alternate linear;
}

@keyframes moveBg {
  from { transform: scale(1.1) translateX(0); }
  to { transform: scale(1.1) translateX(-10%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.95), rgba(15,23,42,0.6));
}

.hero-content {
  position: relative;
  max-width: 1000px;
  margin-left: 100px;
  color: white;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-badge .line {
  width: 60px;
  height: 3px;
  background: #0ea5e9;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 30px;
}

.hero h1 span {
  background: linear-gradient(to right, #e2e8f0, #94a3b8);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 22px;
  max-width: 700px;
  color: #cbd5e1;
}

/* ------------------------------------- */
.purpose {
  padding: 150px 100px;
}

.purpose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.purpose-image img {
  width: 100%;
  border-radius: 30px;
  transition: 0.6s;
}

.purpose-image:hover img {
  transform: scale(1.05);
}

.purpose ul {
  list-style: none;
  margin-top: 30px;
}

.purpose li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  background: #f1f5f9;
  padding: 15px;
  border-radius: 15px;
}

/* --------------------------------------------- */
/* SECTION */
.what-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  overflow: hidden;
}

/* Background */
.bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(1px);
  z-index: 0;
}

/* Container */
.container-DO {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 10;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: #334155;
  font-weight: 500;
}

/* Grid */
.card-grid-DO {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.card-DO {
  position: relative;
  background: white;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.4s;
}

/* Shutter */
.card-shutter-DO {
  position: absolute;
  inset: 0;
  background: #0284c7;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 0;
}

.card-DO:hover .card-shutter-DO {
  transform: translateY(0);
}

/* Content */
.card-content-DO {
  position: relative;
  z-index: 10;
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon */
.icon-box-DO {
  width: 64px;
  height: 64px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 30px;
  transition: 0.4s;
}

.card-DO:hover .icon-box-DO {
  background: white;
}

/* Title */
.card-DO h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
  transition: 0.4s;
}

.card-DO p {
  color: #475569;
  transition: 0.4s;
}

.card-DO:hover h3,
.card-DO:hover p {
  color: white;
}

/* Arrow */
.arrow {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
}

.card-DO:hover .arrow {
  opacity: 1;
  transform: translateY(0);
}

.arrow button {
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 10px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 992px) {
  .card-grid-DO {
    grid-template-columns: 1fr;
  }
}
/* --------------------------------------------- */
.video-section{
  width:100%;
  background:#f8fafc;
  padding: 40px 20px;
  overflow:hidden;
}

/* container */

.video-container{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

/* wrapper */

.video-wrapper{
  width:100%;
  aspect-ratio:16/9;
  border-radius:40px;
  overflow:hidden;
  position:relative;
  border:4px solid white;
  box-shadow:0 30px 60px rgba(148,163,184,0.4);
}

/* remove radius mobile */

@media(max-width:768px){
  .video-wrapper{
    border-radius:0;
  }
}

/* video */

.bg-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* overlay */

.video-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s;
}

.video-wrapper:hover .video-overlay{
  background:rgba(0,0,0,0.2);
}

/* play button */

.play-button{
  width:80px;
  height:80px;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  backdrop-filter:blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform:scale(0.5);
  transition:0.5s;
}

/* hover animation */

.video-wrapper:hover .play-button{
  opacity:1;
  transform:scale(1);
}
/* --------------------------------------------- */
.regulatory-section {
  padding: 120px 20px;
  background: white;
}

.container-RC {
  max-width: 1200px;
  margin: auto;
}

.grid-RC {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

@media(max-width: 992px) {
  .grid-RC {
    grid-template-columns: 1fr;
  }
}

.heading-RC {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.heading-RC svg {
  color: #0284c7;
}

.heading-RC h3 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
}

.text-content-RC p {
  color: #475569;
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.text-content-RC strong {
  color: #0f172a;
}

.btn-RC {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 24px;
  background: #0f172a;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-RC:hover {
  background: #0284c7;
}

.btn-RC .arrow-RC {
  transition: transform 0.3s;
}

.btn-RC:hover .arrow-RC {
  transform: translateX(5px);
}

/* Right Card */
.right-card-RC {
  background: white;
  padding: 50px;
  border-radius: 30px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 25px 60px rgba(148,163,184,0.2);
}

.desc-RC {
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.stats-RC {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.stat-box-RC {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
}

.stat-box-RC:hover {
  background: #e0f2fe;
}

.number-RC {
  font-size: 36px;
  font-weight: 800;
  color: #0284c7;
  margin-bottom: 8px;
}

.label-RC {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #94a3b8;
  text-transform: uppercase;
}

/* Scroll reveal */
.reveal-RC {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-RC.active-RC {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------- */
/* SECTION */
.cta-section-working {
  position: relative;
  width: 100%;
  background: #0B1120;
  color: #cbd5e1;
  padding: 120px 20px;
  overflow: hidden;
  text-align: center;
}

/* Glow Effect */
.cta-glow-working {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 100%;
  background: rgba(14,165,233,0.2);
  filter: blur(120px);
  pointer-events: none;
}

/* Container */
.container-working {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 10;
}

/* Heading */
.cta-content-working h2 {
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

/* Paragraph */
.cta-content-working p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 50px;
  color: #94a3b8;
  font-weight: 300;
}

.cta-content-working p span {
  color: white;
  font-weight: 500;
}

/* Buttons */
.cta-buttons-working {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-working {
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  transform: translateY(0);
}

/* Primary */
.primary-working {
  background: #0284c7;
  color: white;
}

.primary-working:hover {
  background: #0ea5e9;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(2,132,199,0.4);
}

/* Secondary */
.secondary-working {
  background: transparent;
  border: 1px solid #334155;
  color: white;
}

.secondary-working:hover {
  background: white;
  color: #0B1120;
  transform: translateY(-5px);
}

/* Responsive */
@media(max-width: 768px) {
  .cta-content-working h2 {
    font-size: 32px;
  }

  .cta-content-working p {
    font-size: 17px;
  }
}

/* Scroll Reveal */
.reveal-working {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal-working.active-working {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------- */
.footer{
  position:relative;
  background:#020617;
  color:#94a3b8;
  padding:100px 20px 40px;
  overflow:hidden;
  background:#0f172a;

}

/* Top Scan Border */
.scan-border{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:1px;
  background:#1e293b;
  overflow:hidden;
}
.scan-border::after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:2px;
  background:linear-gradient(to right,transparent,#0ea5e9,transparent);
  animation:scan 4s linear infinite;
}
@keyframes scan{
  from{left:-10%;}
  to{left:110%;}
}

/* Background Glow */
.footer::before{
  content:"";
  position:absolute;
  top:-200px;
  right:-200px;
  width:500px;
  height:500px;
  background:rgba(14,165,233,0.08);
  filter:blur(120px);
  border-radius:50%;
}

/* Layout */
.container1{
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:1;
}

.grid1{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:50px;
  margin-bottom:60px;
}

/* Headings */
.footer h3{
  color:white;
  margin-bottom:20px;
}

/* Links */
.footer a{
  text-decoration:none;
  color:#94a3b8;
  transition:0.3s;
}
.footer a:hover{
  color:#0ea5e9;
  transform:translateX(4px);
}

/* List */
.footer ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer ul li{
  margin-bottom:12px;
  font-size:14px;
}

/* Status Badge */
.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#0f172a;
  border:1px solid #1e293b;
  padding:6px 12px;
  border-radius:20px;
  margin-top:20px;
  font-size:12px;
  color:#10b981;
}
.dot{
  width:8px;
  height:8px;
  background:#10b981;
  border-radius:50%;
  position:relative;
}
.dot::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:#10b981;
  animation:pulse 1.5s infinite;
}
@keyframes pulse{
  0%{transform:scale(1);opacity:0.6;}
  100%{transform:scale(2);opacity:0;}
}

/* Bottom Bar */
.bottom{
  border-top:1px solid #0f172a;
  padding-top:20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:13px;
  color:#64748b;
}

.socials{
  display:flex;
  gap:15px;
}
.socials a{
  background:#0f172a;
  padding:10px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.socials a:hover{
  background:#0ea5e9;
  color:white;
}

/* Scroll Animation */
.fade-up{
  opacity:0;
  transform:translateY(30px);
  transition:0.8s ease;
}
.fade-up.show{
  opacity:1;
  transform:translateY(0);
}
/* -------------------------- */
/* -------------------------- */

/* Scroll To Top Button */

#scrollTopBtn{
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:#0ea5e9;
  color:white;
  font-size:22px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:all .3s ease;
  z-index:999;
}

/* Show button */

#scrollTopBtn.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Hover */

#scrollTopBtn:hover{
  background:#0284c7;
  transform:translateY(-3px);
}

/* =========================================
   DYNAMIC BREADCRUMBS CSS
========================================= */
.breadcrumb-wrapper {
    width: 90%;
    margin: 120px auto 20px; /* 120px top margin clears a fixed navbar */
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

#dynamic-breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    margin: 0;
    padding: 0;
}

#dynamic-breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

#dynamic-breadcrumbs a {
    text-decoration: none;
    color: #0284c7;
    transition: color 0.2s ease;
}

#dynamic-breadcrumbs a:hover {
    color: #1e40af;
    text-decoration: underline;
}

#dynamic-breadcrumbs .separator {
    color: #cbd5e1;
    margin: 0 4px;
}

#dynamic-breadcrumbs .active {
    color: #334155;
    font-weight: 600;
}

/* Mobile Adjustments */
@media(max-width: 1024px) {
    .breadcrumb-wrapper {
        margin-top: 100px; 
    }
}

        /* Circular container styling */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 20px;
            background-color: #25d366;
            width: 60px;  /* Set a fixed width */
            height: 60px; /* Set a fixed height equal to width */
            border-radius: 50%; /* This makes it a perfect circle */
            display: flex;
            align-items: center;
            justify-content: center; /* Centers the icon perfectly */
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        /* Icon size inside the circle */
        .whatsapp-icon {
            width: 35px;
            height: 35px;
        }

        /* Hover effect */
        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: translateY(-5px);
        }

        /* Slightly smaller circle on mobile screens */
        @media screen and (max-width: 480px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }
            .whatsapp-icon {
                width: 30px;
                height: 30px;
            }
        }