* {margin: 0; padding: 0; box-sizing: border-box;}
    body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #f5f7fa;
            overflow-x: hidden;
      scroll-behavior: smooth;
      transition: background 0.5s ease, color 0.5s ease;
      margin: 0;
  padding: 0;

  
    }
:root {
      --bg-color: #f5f7fa;
      --text-color: #1a1a1a;
      --card-bg: #ffffff;
      --nav-bg: rgba(255, 255, 255, 0.9);
      --footer-bg: #1a1a1a;
      --footer-text: #999;
      --primary-color: #0066ff;
    }

 /* Dark theme styles */
    body.dark {
      background: #0d1117;
      color: #e6edf3 !important;
    }


.fullscreen-iframe {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100vw;         /* Full viewport width */
  height: 100vh;
  border: none;         /* Removes border */
  margin: 0;
  padding: 0;
  /* z-index: 9999; */
}


    body.dark .navbar {
      background: rgba(20, 25, 30, 0.95);
      box-shadow: 0 2px 15px rgba(255,255,255,0.05);
    }

    body.dark .navbar .nav-link  {
      color: #e6edf3 !important;
    }
body.dark .navbar .text-dark{
  color: #e6edf3 !important;
}
body.dark .hero-title{
  color: #e6edf3;
}
body.dark .hero-description{
      color: #ffffff !important;
    }

body.dark .stats-card .stat-number,
body.dark .stats-card .stat-title{
  color: #ffffff !important; 
}



    body.dark .nav-link::after {
      background: #58a6ff;
    }

    body.dark .hero-section {
      background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    }

    body.dark .stats-card,
    body.dark .service-card,
    body.dark .footer {
      background: #161b22 !important;
      color: #e6edf3 !important;
      box-shadow: 0 0 30px rgba(255,255,255,0.05);
    }

    body.dark .footer-links a {
      color: #8b949e;
    }

    body.dark .footer-links a:hover {
      color: #58a6ff;
    }

    body.dark .social-icon {
      background: rgba(255,255,255,0.1);
      color: #e6edf3;
    }

    body.dark .social-icon:hover {
      background: #58a6ff;
    }

    body.dark .why-section
    {
      background: #0e1114;
      
      
    }
body.dark .section-title,
body.dark .section-subtitle{
color: #e6edf3 !important;
}

body.dark .services-section{
  background: #272829;
}

body.dark .industries-section {
  background: #272829;
}
body.dark .service-description {
  color: #ffffff;   
}

body.dark .service-card-primary{
  background-color: #0066FF; 
  
}
body.dark .testimonials{
  background: #2b2a2a;
}
body.dark .testimonial-card{
  background: #1a1a1a;
} 

body.dark .navbar .navbar-toggler{
color:#e6edf3 !important;
}

body.dark .navbar-toggler-icon {
  filter: invert(100%) brightness(200%);
}



    /* Navbar */
    .navbar {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      padding: 80px 0;
      box-shadow: 0 2px 15px rgba(0,0,0,0.05);
      position: sticky;
      border-radius: 0 0 20px 20px;
      top: 0;
      z-index: 999;
      transition: all 0.3s ease;
    }
    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    }
    .navbar-brand {
      font-size: 24px;
      font-weight: 800;
      color: #0066FF !important;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-icon img {
      width: 75px;
      height: 52px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .nav-link {
      color: #1a1a1a !important;
      font-weight: 500;
      margin: 0 12px;
      font-size: 15px;
      position: relative;
      transition: color 0.3s;
    }

    .nav-link::after {
      content: '';
      width: 0%;
      height: 2px;
      position: absolute;
      bottom: -4px;
      left: 0;
      background: #0066FF;
      transition: width 0.3s;
    }

    .nav-link:hover::after {width: 100%;}

    /* Toggle Switch */
    .theme-toggle {
      background: #f0f0f0;
      border-radius: 30px;
      width: 55px;
      height: 28px;
      position: relative;
      cursor: pointer;
      transition: all 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6px;
    }

    .theme-toggle .icon {
      font-size: 14px;
      transition: opacity 0.4s ease;
    }

    .theme-toggle .circle {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 22px;
      height: 22px;
      background: white;
      border-radius: 50%;
      transition: all 0.4s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    body.dark .theme-toggle {
      background: #1f2937;
    }

    body.dark .theme-toggle .circle{
      transform: translateX(27px);
      background: #58a6ff;
    }

    /* Hero */
    .hero-section {
      background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
      transition: background 0.5s ease;
    }

    .floating-shape {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(0,102,255,0.15), transparent);
      animation: float 8s ease-in-out infinite;
    }

    @keyframes float {
      0%,100% {transform: translateY(0);}
      50% {transform: translateY(-20px);}
    }

    .hero-title {font-size: 60px; font-weight: 800; margin-bottom: 20px;}
    .hero-description {font-size: 18px; color: #555; margin-bottom: 35px;}

    .btn-primary-custom {
      background: linear-gradient(135deg, #0066FF, #003EB3);
      color: white;
      padding: 12px 32px;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      margin-right: 10px;
      transition: all 0.3s;
    }

    .btn-primary-custom:hover {transform: translateY(-3px); color:white;}
    .btn-secondary-custom {
      background: transparent;
      color: #000000;
      padding: 12px 32px;
      border-radius: 50px;
      border: 2px solid #0066FF;
      font-weight: 600;
      transition: all 0.3s;
    }
    .btn-secondary-custom:hover {background: #0066FF; color: white !important;}


.navbar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0 6px;
  font-size: 15px;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #f8f9fa;
  overflow: hidden;
  position: relative;
  
}

.nav-link:hover {
  background: linear-gradient(135deg, #0066FF, #003EB3);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
  /* transform: translateY(-2px); */
  padding-left:20px !important;
  display:flex;
}

i {
  font-size: 18px;
  opacity: 0;                /* Start invisible */
  visibility: hidden;
  /* transform: translateX(-5px);  */
  transition: all 0.3s ease;
}

/* 2. The icon's state when the link is hovered */
.nav-link:hover i {
  opacity: 1;                 /* Fade it in */
  visibility: visible;
  /* transform: translateX(0); */
}



/* Icon animation */
.nav-link i {
  margin-right: 8px;
  /* opacity: 0; */
  transform: translateX(20px);
  transition: all 0.4s ease;
}


.nav-link.show-icon i {
  opacity: 1;
  transform: translateX(0);
}


    
    /* Navbar */
    .navbar {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      padding: 80px 0;
      box-shadow: 0 2px 15px rgba(0,0,0,0.05);
      position: sticky !important;
      /* height: 70px; */
      border-radius: 0 0 20px 20px;
      top: 0;
      z-index: 999;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 10px 0;
      box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    }

    .navbar-brand {
      font-size: 24px;
      font-weight: 800;
      color: #0066FF !important;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    @media screen and (max-width: 768px) {
      .navbar-brand {font-size: 20px;}
    }


    .brand-icon img {
      width: 75px;
      height: 52px;
      /* border-radius: 12px; */
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .brand-icon img:hover {
      cursor: pointer;
    }

    .nav-link {
      color: #1a1a1a !important;
      font-weight: 500;
      margin: 0 12px;
      font-size: 15px;
      position: relative;
      transition: color 0.3s;
    }

    .nav-link::after {
      content: '';
      width: 10%;
      height: 2px;
      position: absolute;
      bottom: -4px;
      left: 0;
      background: #0066FF;
      transition: width 0.3s;
    }

    .nav-link:hover::after {width: 100%;}

    /* Hero Section */
    .hero-section {
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('images/bg.png') center/cover no-repeat;
  opacity: 0.2; 
  z-index: 0; 
}

    .floating-shape {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(0,102,255,0.15), transparent);
      animation: float 8s ease-in-out infinite;
    }

    .shape1 {top: 10%; left: 5%; width: 200px; height: 200px;}
    .shape2 {bottom: 15%; right: 10%; width: 250px; height: 250px;}

    @keyframes float {
      0%, 100% {transform: translateY(0);}
      50% {transform: translateY(-20px);}
    }

    .hero-title {
      font-size: 60px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero-description {
      font-size: 18px;
      color: #555;
      margin-bottom: 35px;
      max-width: 500px;
    }

    .btn-primary-custom {
      background: linear-gradient(135deg, #0066FF, #003EB3);
      color: white;
      padding: 12px 32px;
      border-radius: 50px;
      border: none;
      font-weight: 600;
      margin-right: 10px;
      transition: all 0.3s;
      box-shadow: 0 6px 15px rgba(0,102,255,0.3);
    }

    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,102,255,0.4);
    }

    .btn-secondary-custom {
      background: transparent;
      color: #0066FF;
      padding: 12px 32px;
      border-radius: 50px;
      border: 2px solid #0066FF;
      font-weight: 600;
      transition: all 0.3s;
    }

    .btn-secondary-custom:hover {
      background: #0066FF;
      color: white;
    }

    /* Hero image */
    .phone-mockup {
      animation: float 5s ease-in-out infinite;
      background: white;
      border-radius: 40px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.1);
      max-width: 580px;
      padding: 15px;
      margin: 0 auto;
    }

    .phone-mockup img {
      border-radius: 24px;
      width: 100%;
      height: auto;
    }

    /* Stats Card */
    .stats-card {
      background: white;
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      margin-top: 40px;
    }

    .stat-number {
      font-size: 50px;
      font-weight: 800;
      color: #1a1a1a;
    }

    .stat-title {
      font-size: 20px;
      font-weight: 700;
      color: #1a1a1a;
      margin-top: 20px;
    }

    .stat-description {
      font-size: 15px;
      color: #838282;
    }

    .patient-avatars {
      display: flex;
      margin-bottom: 10px;
    }

    .patient-avatars img {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 3px solid white;
      margin-left: -10px;
    }

    .add-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #0066FF;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      border: 3px solid white;
      margin-left: -10px;
      font-size: 18px;
    }

     /* Footer */
        .footer {
            /* background: #1a1a1a; */
            background: linear-gradient( #2d2d2d, #1a1a1a);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: #0066FF;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
                margin-top: -70px;
            }
            .section-title {
                font-size: 32px;
                padding-bottom:-30px;
            }
            .patient-avatars {
              display: flex;
              margin-bottom: 10px;
              overflow: hidden;
            }

.avatar-slide {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInAvatar 0.6s ease-out forwards;
}

.avatar-slide:nth-child(1) { animation-delay: 0.2s; }
.avatar-slide:nth-child(2) { animation-delay: 0.4s; }
.avatar-slide:nth-child(3) { animation-delay: 0.6s; }
.avatar-slide:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInAvatar {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.brand-icon img {
      width: 75px;
      height: 52px;
      /* border-radius: 12px; */
      object-fit: cover;
      transition: transform 0.3s ease;
    }


        }
        /* Avatar Slide-in Animation */
.patient-avatars {
  display: flex;
  margin-bottom: 10px;
  overflow: hidden;
}

.avatar-slide {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInAvatar 0.6s ease-out forwards;
}

.avatar-slide:nth-child(1) { animation-delay: 0.2s; }
.avatar-slide:nth-child(2) { animation-delay: 0.4s; }
.avatar-slide:nth-child(3) { animation-delay: 0.6s; }
.avatar-slide:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInAvatar {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

  /* Services Section */
.services-section {
  padding: 10px 0;
  background: linear-gradient(180deg, #f8faff 0%, #eef3f8 100%);
  position: relative;
}

.section-title {
  font-size: 50px;
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 20px;
  margin-bottom: 50px;
}

.section-title span {
  color: #0066FF;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  /* margin: 0 auto 50px; */
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -80%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0,102,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,102,255,0.15);
}

.service-card.primary {
  background: linear-gradient(135deg, #0066FF, #004CBA);
  color: white;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555;
}

.service-card.primary .service-description {
  color: rgba(255, 255, 255, 0.9);
}

.service-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0066FF;
  font-size: 26px;
  transition: all 0.3s ease;
}

.service-card.primary .service-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 34px;

  }
}

 /* About Section */
    .about-section { padding: 30px 0; padding-bottom:40px; margin:auto; max-width: 1200px; }
    .about-img img { width: 100%; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

/* Why Choose Section */
        .why-section {
            background: white;
            padding-top: 50px;
        }

        .section-label {
            color: #0066FF;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .highlight-text {
            color: #0066FF;
        }
        
/* Industries */
         .industries-section { padding: 100px 0; background: white; }
    .industry-card { background: #f8faff; border-radius: 12px; padding: 25px; border:#0066ff23 solid 1px; transition: all 0.3s; text-align: center; font-weight: 600; color: #333; }
    .industry-card:hover { background: #0066FF; color: #fff; transform: scale(1.05); }

    
    /* Testimonials */
    .testimonials { padding: 100px 0; background: #f8faff; }
    .testimonial-card { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 8px 25px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s; }
    .testimonial-card:hover { transform: translateY(-8px); }
    .testimonial-card img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; }

    
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}