body {
  font-family: Arial, sans-serif;
}

.contact-sales-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2196F3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

/* Hover scaling effect */


/* Arrow animation */
.contact-sales-btn::after {
  content: '→';
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-sales-btn:hover::after {
  animation: arrow-move 0.6s infinite alternate;
}

@keyframes arrow-move {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(10px);
  }
}

/* Click ripple effect */
.contact-sales-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 0;
  height: 0;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-sales-btn:active::before {
  width: 200%;
  height: 200%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}

/* Subtle text shimmer on hover */
.contact-sales-btn:hover .btn-text {
  animation: text-shimmer 1.5s infinite;
}

@keyframes text-shimmer {
  0%, 100% {
      text-shadow: none;
  }
  50% {
      text-shadow: 0 0 10px rgba(255,255,255,0.7);
  }
}

/* Top bar styling */
.top-bar {
  background: linear-gradient(to right, #d4af37, #000000);
  padding: 0;
}

.search-box {
  border: 1px solid white;
  background: transparent;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-box:focus {
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  border-color: #fff;
  outline: none;
}

.search-box::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light {
  border-color: white;
  color: white;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-us {
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.contact-us:hover {
  color: #d4af37;
  text-decoration: none;
}

/* Navbar styling */
/* Set navbar height variable */
:root {
  --navbar-height: 70px;
}

.navbar {
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
  height: var(--navbar-height);
}

.navbar-brand img {
  height: 40px;
  transition: height 0.3s ease;
}

.navbar.fixed .navbar-brand img {
  height: 35px;
}

.nav-link {
  color: #333;
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #d4af37;
}

/* Underline effect for nav links */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

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

/* Yellow highlight for insights tab */
#insightsDropdown::after {
  background-color: #d4af37;
}

/* Dropdown menu styling */
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 200px;
  animation: fadeIn 0.3s ease;
}

/* Mega menu for Insights */
.megamenu {
  padding: 0;
  background-color: #1a1b25;
  color: white;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 15px;
  border-radius: 0;
}

.vistasights-section {
  padding: 30px 20px;
}

.vistasights-section h3 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
  color: white;
}

.vistasights-section p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.5;
}

.explore-btn {
  display: inline-block;
  border: 1px solid white;
  color: white;
  padding: 8px 30px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.explore-btn:hover {
  background-color: white;
  color: #1a1b25;
}

.insights-categories {
  padding: 30px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 100%;
}

.mega-links li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-links li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 15px 0;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-links li a:hover {
  color: #d4af37;
  padding-left: 5px;
}

.arrow-icon {
  font-size: 18px;
  font-weight: bold;
}

/* Regular dropdown items */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  color: #555;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f8f8;
  color: #d4af37;
  padding-left: 1.8rem;
}

.dropdown-divider {
  margin: 0.3rem 0;
  border-color: #eee;
}

/* Fixed navbar on scroll */
.navbar.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 5px 20px;
  background-color: rgba(255, 255, 255, 0.95);
}

/* Mobile menu sliding */
@media (max-width: 992px) {
  /* Main navbar collapse */
  .navbar-collapse {
    position: fixed;
    top: var(--navbar-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--navbar-height));
    background-color: #1a1b25; /* Dark background color */
    transition: right 0.5s ease-in-out; /* Slower transition */
    z-index: 1050;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-collapse.show {
    right: 0;
  }
  
  /* Mobile menu text color */
  .navbar-collapse .nav-link {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
  }
  
  .navbar-collapse .nav-link:hover, 
  .navbar-collapse .nav-link.active {
    color: #d4af37;
  }
  
  /* Close button for mobile menu */
  .mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Megamenu styles for mobile */
  .dropdown-menu.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1060;
  }
  
  .dropdown-menu.megamenu.show {
    transform: translateX(0);
  }
}
/* Container scroll */
.scrollable-container {
  max-height: 500px; /* You can change this as needed */
  overflow-y: auto;
  padding: 15px;
  
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each card */
.cards {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s ease;
}

.cards:hover {
  transform: translateY(-5px);
}

/* Image styling */
.cards img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}



/* KPMG-Style Vertical FAQ Design */
.faqs {
  padding: 40px 0;
  font-family: 'Noto Sans', Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

.faqs .section-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00338D; /* KPMG blue */
  margin-bottom: 15px;
}

.faqs .section-title {
  font-size: 28px;
  font-weight: 600;
  color: #212529;
  line-height: 1.2;
  margin-bottom: 20px;
}

.faqs .section-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
}

.faqs .faq-list {
  margin-top: 20px;
}

.faqs .faq-item {
  padding: 25px 0;
  border-top: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.faqs .faq-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

/* Style for vertical layout */
.faqs .faq-item .row {
  display: block;
}

.faqs .faq-item .col-md-5,
.faqs .faq-item .col-md-7 {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

.faqs .faq-question {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-left: 40px; /* Space for the icon */
  cursor: pointer;
  transition: color 0.3s ease;
}

.faqs .faq-question:hover {
  color: #00338D; /* KPMG blue */
}

/* Create the purple circular icon */
.faqs .faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #7B5AA6; /* Purple similar to KPMG's */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Add the question mark inside the circle */
.faqs .faq-question::after {
  content: '?';
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: #7B5AA6;
  font-size: 16px;
  font-weight: bold;
}

.faqs .faq-answer {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
  padding-left: 40px; /* Align with the question text */
}

/* Optional: Add some hover effects to make it more interactive */
.faqs .faq-item:hover {
  background-color: #f9f9f9;
}

.hero-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  border-left: 4px solid #d4af37;
}

.network-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.main-title {
  color: white;
  font-size: 3.5rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.card-container {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  position: relative;
  z-index: 3;
  max-width: 350px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 65px;
  width: 328px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-learn-more {
  background-color: #000;
  color: white;
  border-radius: 25px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.action-icons {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
}

.action-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

/* .network-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
} */


:root {
  --un-dark-bg: #2A2A30;
  --un-text-white: #ffffff;
  --un-button-border: #646464;
  --un-yellow-accent: #FFD600;
}

.un-body {
  background-color: var(--un-dark-bg);
  color: var(--un-text-white);
  font-family: Arial, sans-serif;
}

.un-main-container {
  padding: 20px;
}

.un-main-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.un-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.un-card-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 200px;
}

.un-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.un-podcast-card {
  background: linear-gradient(to right, #1F0F4E, #3A1487);
  position: relative;
}

.un-podcast-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--un-yellow-accent);
  color: black;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
}

.un-podcast-title {
  position: absolute;
  top: 15px;
  left: 70px;
  font-weight: bold;
  font-size: 18px;
}

.un-podcast-subtitle {
  position: absolute;
  top: 40px;
  left: 70px;
  font-size: 13px;
}

.un-podcast-hosts {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
}

.un-podcast-host {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.un-host-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}

.un-host-info {
  font-size: 10px;
}

.un-host-name {
  font-weight: bold;
}

.un-travel-card {
  position: relative;
}

.un-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.un-card-title {
  color: var(--un-yellow-accent);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.un-card-subtitle {
  font-size: 14px;
  margin-bottom: auto;
}

.un-expert-info {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.un-expert-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.un-expert-details {
  font-size: 12px;
}

.un-expert-name {
  font-weight: bold;
}

.un-card-description {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5;
}

.un-learn-more-btn {
  display: inline-block;
  color: white;
  border: 1px solid var(--un-button-border);
  padding: 8px 15px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.un-learn-more-btn:hover {
  background-color: rgba(255,255,255,0.1);
  color: white;
}

.un-ai-card {
  position: relative;
}

.un-mic-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
}

/* 
 */

 
 .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
}

.section-divider {
  height: 2px;
  background: linear-gradient(to right, #9460aa, #ffffff);
  margin-bottom: 25px;
  margin-top: -15px;
}

.article-card {
  border-radius: 0;
  border: none;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  height: 100%;
}

.article-image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.article-content {
  padding: 15px;
}

.article-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #333;
}

.article-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-meta {
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
}

.article-date {
  margin-right: 8px;
}

.article-author {
  font-weight: bold;
}

.article-plus {
  margin-left: 5px;
  background-color: #f0f0f0;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}


/*  */


.uft-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Subscribe Banner */
.uft-subscribe-wrapper {
  background-color: #FFCE47;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uft-subscribe-message {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.uft-subscribe-action {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.uft-notification-icon {
  margin-right: 10px;
  font-size: 28px;
}

/* Footer Main Area */
.uft-main-section {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
}

.uft-content-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.uft-brand-title {
  font-size: 36px;
  font-weight: bold;
}

.uft-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uft-nav-item {
  margin-bottom: 8px;
}

.uft-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.uft-nav-link:hover {
  text-decoration: underline;
}

/* Footer Bottom */
.uft-bottom-section {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
}

.uft-company-logo {
  height: 40px;
}

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

.uft-social-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f2f2f2;
  text-decoration: none;
}

.uft-twitter-button {
  background-color: #000;
  color: #fff;
}

.uft-footer-border {
  height: 4px;
  background: linear-gradient(to right, #FFCE47 30%, transparent 30%);
}

/* Responsive Styles */


/*  */

.vs-main-wrapper {
  background-color: #1A1C24;
  color: #ffffff;
  font-family: Arial, sans-serif;
  padding: 50px 0;
  position: relative;
}

.vs-top-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 4px;
  background-color: #FFD700;
}

.vs-bottom-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #FFD700, #FFD700 15%, #000066 15%, #000066);
}

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

.vs-brand-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.vs-tagline {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.vs-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

.vs-explore-btn {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vs-explore-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.vs-topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-topic-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}

.vs-topic-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.vs-topic-link:hover {
  color: #FFD700;
}



/*  */

 /* Using ind- prefix for Industries unique classes */
 .ind-main-container {
  background-color: #1A1C24;
  color: #ffffff;
  font-family: Arial, sans-serif;
  padding: 50px 0;
}

.ind-section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

.ind-section-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 500px;
}

.ind-explore-btn {
  display: inline-block;
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  padding: 10px 30px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.ind-explore-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.ind-industries-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ind-industry-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ind-industry-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.ind-industry-link:hover {
  color: #ffffff;
}

.ind-industry-active {
  background-color: rgba(138, 43, 226, 0.3);
  border-left: 4px solid blueviolet;
  padding-left: 15px;
}

.ind-arrow-icon {
  font-size: 20px;
}

/*  */

     /* Main container styles */
     .srv-container {
      background-color: #1A1C24;
      color: #ffffff;
      font-family: Arial, sans-serif;
      padding: 50px 0;
  }
  
  /* Section title */
  .srv-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 30px;
  }
  
  /* Section description */
  .srv-description {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 25px;
      max-width: 500px;
  }
  
  /* Explore button */
  .srv-explore-btn {
      display: inline-block;
      border: 1px solid #ffffff;
      color: #ffffff;
      background-color: transparent;
      padding: 10px 30px;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-top: 15px;
  }
  
  .srv-explore-btn:hover {
      background-color: rgba(255, 255, 255, 0.1);
      color: #ffffff;
  }
  
  /* Services list */
  .srv-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .srv-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;
  }
  
  .srv-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      transition: all 0.3s ease;
  }
  
  .srv-link:hover {
      color: #ffffff;
      padding-left: 10px;
      background-color: rgba(255, 255, 255, 0.05);
  }
  
  .srv-arrow {
      font-size: 20px;
  }

/*  */

/* Stats Counter Section Styling */
.stats-counter-section {
  background-color: #1a1b25;
  padding: 100px 0;
  position: relative;
}

.stats-counter-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #8b0000, #ff4500);
}

.stat-item {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
}

.counter-number, .counter-prefix, .counter-suffix {
  font-size: 5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  display: inline-block;
}

.counter-prefix {
  margin-right: -10px;
}

.counter-suffix {
  margin-left: -10px;
}

.counter-text {
  width: 100%;
  text-align: center;
  color: #a0a0a0;
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .counter-number, .counter-prefix, .counter-suffix {
      font-size: 3.5rem;
  }
  
  .counter-text {
      font-size: 1rem;
  }
  
  .stats-counter-section {
      padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .stat-item {
      margin-bottom: 40px;
  }
}


/* pop up  */

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: fadeIn 0.3s ease-in-out;
}

.contact-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 8px;
  z-index: 1000;
  width: 90%;
  max-width: 900px;
  animation: slideIn 0.4s ease-in-out;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.popup-content {
  display: flex;
  height: 500px;
}

.popup-close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: rgb(65, 64, 64);
  z-index: 1001;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #d7d89a;
  background-color: red;
}

/* Left Section - Location */
.location-section {
  width: 40%;
  background-color: #0d1d35;
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-title {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: bold;
}

.location-icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.address {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Section - Contact Form */
.contact-section {
  width: 60%;
  background-color: #f5f7ff;
  padding: 40px;
  overflow-y: auto;
}

.contact-title {
  font-size: 28px;
  color: white;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
}

textarea.form-control {
  height: 120px;
  resize: none;
}

.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.phone-input {
  display: flex;
  align-items: center;
}

.country-code {
  width: 80px;
  background-color: white;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px 0 0 4px;
  border: 1px solid #ddd;
  border-right: none;
  height: 44px;
}

.country-code img {
  width: 24px;
  height: 16px;
  margin-right: 5px;
}

.phone-input .form-control {
  border-radius: 0 4px 4px 0;
}

.recaptcha {
  margin: 15px 0;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 4px;
  background-color: white;
  width: fit-content;
}

.recaptcha-checkbox {
  display: flex;
  align-items: center;
}

.recaptcha-checkbox input {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}

.recaptcha-logo {
  width: 150px;
  height: auto;
  margin-left: 20px;
}

.submit-btn {
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  margin-top: 10px;
  min-width: 120px;
}

.submit-btn:hover {
  background-color: #0056b3;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
      transform: translate(-50%, -60%);
      opacity: 0;
  }
  to {
      transform: translate(-50%, -50%);
      opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .popup-content {
      flex-direction: column;
      height: auto;
  }
  
  .location-section, .contact-section {
      width: 100%;
  }
  
  .form-row {
      flex-direction: column;
      gap: 0;
  }
  
  .contact-popup {
      width: 95%;
      max-height: 90vh;
      overflow-y: auto;
  }
}
/* mega link */

/* Add this CSS to your existing stylesheet */
.insights-categories {
  display: flex;
  padding: 30px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.mega-links-container {
  width: 50%;
}

.description-panel {
  width: 50%;
  position: relative;
  padding-left: 20px;
}

.link-description {
  display: none;
  padding: 15px;
  background-color: #2a2b35;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 20px;
  right: 0;
  animation: fadeIn 0.3s ease-in-out;
}

.link-description.active {
  display: block;
}

.link-description h4 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 18px;
}

.link-description p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

/* Ensure mobile responsiveness */
@media (max-width: 992px) {
  .insights-categories {
    flex-direction: column;
  }
  
  .mega-links-container,
  .description-panel {
    width: 100%;
  }
  
  .description-panel {
    margin-top: 20px;
    padding-left: 0;
  }
  
  .link-description {
    position: relative;
    left: 0;
  }
}

/* Add this animation if not already defined */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/* our united section hover effect */

.article-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.article-content {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  transition: color 0.3s ease;
}

.article-card:hover .article-title {
  color: #007BFF;
}

.article-description {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 0.85rem;
  color: #888;
}


/* Location */

.unick {
  position: relative;
  padding: 40px 0;
  background-color: white;
}

.unick::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../img/loc1.avif');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  background-color: #f8f9fa;
}

.unick .container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
}

.unick .heading {
  margin-bottom: 30px;
  text-align: left;
}

.unick .heading h2 {
  font-size: 40px;
  font-weight: 400;
}

.unick .heading h2 span {
  font-weight: 600;
  color: #0d2557;
}

.unick .global-section {
  background-color: #0f1521;
  color: white;
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 30px;
  position: relative;
  
}

.unick .location-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.unick .col-md-4 {
  flex: 0 0 auto;
  width: 33.33333%;
  padding: 0 10px;
}

.unick .location-card {
  background-color: #1a2332;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  width: 100%;
  min-height: 130px;
  transition: transform 0.3s ease;
}

.unick .location-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.unick .location-info {
  font-size: 14px;
  line-height: 1.5;
  color: #adb5bd;
}

.unick .country-title {
  margin: 15px 0;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.unick .location-divider {
  height: 1px;
  background-color: rgba(255,255,255,0.1);
  margin: 20px 0;
}

.unick .country-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.unick .country-block {
  width: 33.33%;
  text-align: center;
}

.unick .location-icon {
  height: 50px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.unick .hq-tag {
  color: #3498db;
  font-size: 14px;
  font-weight: normal;
  margin-left: 5px;
}

@media (max-width: 767px) {
  .unick .col-md-4 {
      width: 100%;
  }
  
  .unick .country-block {
      width: 100%;
      margin-bottom: 20px;
  }
  
  .unick .country-section {
      flex-direction: column;
  }
}

/* Style */



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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.contact-card {
  background-color: #1f2937;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-image {
  width: 100%;
  height: 150px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the image covers the area without distortion */
  object-position: center; /* This centers the image */
  display: block; /* Removes any potential inline spacing */
}

.contact-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  
}

.contact-address {
  margin-bottom: 15px;
  line-height: 1.5;
  color: white;
}

.email-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: white;
}

.email-link {
  color: #3b82f6;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-grid {
      grid-template-columns: 1fr;
  }
  
  .contact-image {
      height: 180px; /* Slightly taller on mobile for better visibility */
  }
}


/* style */
/* helathcare  */

 /* Custom CSS */
 .ai-services-section {
  background-color: #f8f9ff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.ai-services-section h2 {
  color: #1a2b3c;
  font-weight: 600;
  margin-bottom: 50px;
  font-size: 40px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  position: relative;
  min-width: 200px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  border-right: 1px dashed #ccc;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.stat-value {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a2b3c;
  transition: color 0.3s ease;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

/* Icon colors */
.rocket-icon {
  color: #FF9F43;
}

.up-icon {
  color: #28C76F;
}

.down-icon {
  color: #28C76F;
}

/* For mobile devices */
@media (max-width: 768px) {
  .stat-item {
      flex: 0 0 50%;
      margin-bottom: 30px;
  }
  
  .stat-item:not(:last-child)::after {
      display: none;
  }
}

@media (max-width: 576px) {
  .stat-item {
      flex: 0 0 100%;
  }
}


/* Revenue */

.revenue-cycle-section {
  background-color: #121a28;
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.revenue-cycle-section h1 {
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #ffffff;
}

.cycle-column {
  position: relative;
  padding: 20px 25px;
  margin-bottom: 30px;
  height: 350px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1a73e8 #2a3548;
}

.cycle-column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background-color: #1a73e8;
  border-radius: 3px;
}

/* Custom scrollbar styling */
.cycle-column::-webkit-scrollbar {
  width: 8px;
}

.cycle-column::-webkit-scrollbar-track {
  background: #2a3548;
  border-radius: 4px;
}

.cycle-column::-webkit-scrollbar-thumb {
  background-color: #1a73e8;
  border-radius: 4px;
}

.cycle-column h2 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.cycle-column p {
  color: #d8d8d8;
  font-size: 1rem;
  line-height: 1.6;
}

/* Style for the lists */
.cycle-column ul {
  padding-left: 20px;
  color: #d8d8d8;
}

.cycle-column ul li {
  margin-bottom: 8px;
}

/* Fixed column width on desktop */
@media (min-width: 992px) {
  .col-lg-4 {
      width: 33.333%;
      flex: 0 0 auto;
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .revenue-cycle-section h1 {
      font-size: 2rem;
  }
  
  .cycle-column h2 {
      font-size: 1rem;
  }
  
  .cycle-column {
      height: 300px; /* Slightly shorter on tablets */
  }
}

@media (max-width: 768px) {
  .revenue-cycle-section h1 {
      font-size: 1.8rem;
  }
  
  .cycle-column {
      height: 250px; /* Even shorter on mobile */
  }
}

/* EHR PLATFORM Healthcare.html */

.ehr-platforms-section {
  background-color: #f8f9ff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.ehr-platforms-section h2 {
  color: #1a2b3c;
  font-weight: 600;
  margin-bottom: 50px;
  font-size: 40px;
  padding-left: 20px;
}

/* Marquee container styles */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Marquee content styles */
.marquee-content {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 30s linear infinite;
}

/* Logo item styles */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  
}

.logo-item svg {
  max-height: 100%;
  max-width: 180px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.logo-item:hover svg {
  opacity: 1;
  transform: scale(1.05);
}

/* Scrolling animation */
@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-100% / 2));
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ehr-platforms-section h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      text-align: center;
      padding-left: 0;
  }
  
 
  
  .logo-item svg {
      max-width: 150px;
  }
}

@media (max-width: 576px) {
  .ehr-platforms-section h2 {
      font-size: 1.8rem;
      margin-bottom: 30px;
  }
  
  .logo-item {

      height: 60px;
  }
  
  .logo-item svg {
      max-width: 120px;
  }
}


 /* AI Partner Section Styles */
 .ai-partner-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  color: white;
  overflow: hidden;
  background-color: #051224; /* Dark navy background */
}

/* Background Wave Animation */
.wave-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
  overflow: hidden;
}

.wave-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Styles */
.section-content {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 90%;
}

/* Stats Cards */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.stat-card {
  background-color: rgba(18, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 25px;
  width: 260px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .section-title {
      font-size: 2.2rem;
  }
  
  .stat-card {
      width: 240px;
  }
}

@media (max-width: 992px) {
  .section-title {
      font-size: 2rem;
  }
  
  .stats-container {
      justify-content: flex-start;
      margin-top: 30px;
  }
  
  .stat-card {
      width: calc(50% - 10px);
      min-width: 240px;
  }
}

@media (max-width: 768px) {
  .ai-partner-section {
      padding: 60px 0;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .section-text {
      max-width: 100%;
  }
  
  .stat-card {
      width: 100%;
      margin-bottom: 15px;
  }
}


/* specialties-section */

  /* Class-based styling only */
  .specialties-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

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

.specialties-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222222;
}

.specialties-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #333333;
    font-weight: 400;
}

.specialties-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.specialty-column {
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
}

.specialty-item {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    height: 120px;
}

.specialty-icon-container {
    margin-bottom: 15px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialty-icon {
    width: 24px;
    height: 24px;
    stroke: #333;
    stroke-width: 1.5;
}

.specialty-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialty-underline {
    width: 100%;
    height: 3px;
    background-color: #555555;
    position: relative;
    overflow: hidden;
}

.specialty-underline::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

.specialty-item:hover .specialty-underline::after {
    width: 100%;
}

.specialties-footer {
    height: 1px;
    background-color: #000;
    width: 100%;
    margin-top: 40px;
}

/* Media queries using class-based selectors */
@media (max-width: 992px) {
    .specialty-column {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .specialty-column {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .specialty-column {
        width: 50%;
    }
    .specialty-name {
        font-size: 0.9rem;
    }
}

/* Benifit Section */

.benefits-section {
  background-color: #121A28;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 60px 0;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-card {
  background-color: rgba(30, 45, 75, 0.6);
  border-radius: 8px;
  padding: 25px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 300px;
  margin-bottom: 20px;
}

.benefit-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.benefit-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}

@media (max-width: 992px) {
  .benefit-card {
      flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .benefit-card {
      flex: 1 1 100%;
  }
}

/* Privacy policy */

        /* Custom CSS variables */
        :root {
            --ucg-primary: #d4b95b;
            --ucg-background: #1e1c18;
            --ucg-gradient: linear-gradient(145deg, #1e1c18 0%, #0f0e0c 100%);
        }
        
        /* Base styles */
        .page-container {
            background-color: var(--ucg-background);
            color: #f8f9fa;
            font-family: 'Segoe UI', Arial, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            margin: 0;
        }
        
        .privacy-container {
            background: var(--ucg-gradient);
            width: 100%;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            border-top: 1px solid rgba(212,185,91,0.2);
            border-bottom: 1px solid rgba(212,185,91,0.2);
        }

        .privacy-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: radial-gradient(circle at center, rgba(212,185,91,0.2) 0%, rgba(30,28,24,0) 60%);
            z-index: 0;
        }
        
        /* Logo section styles */
        .logo-section {
            text-align: center;
            padding: 2.5rem 0 1.5rem;
            position: relative;
        }
        
        .ucg-emblem {
            width: 100px;
            height: 100px;
            margin: 0 auto;
            position: relative;
        }
        
        .ucg-cross {
            position: absolute;
            top: 41%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
            font-weight: bold;
            color: var(--ucg-primary);
            z-index: 2;
        }
        
        .gear-outer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid var(--ucg-primary);
            border-radius: 50%;
            animation: rotate-reverse 40s linear infinite;
        }
        
        .gear-inner {
            position: absolute;
            top: 10%;
            left: 10%;
            width: 80%;
            height: 80%;
            border: 8px dashed rgba(212,185,91,0.3);
            border-radius: 50%;
            animation: rotate 30s linear infinite;
        }
        
        .gear-dots {
            position: absolute;
            top: 5%;
            left: 5%;
            width: 90%;
            height: 90%;
            border-radius: 50%;
        }
        
        .gear-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: var(--ucg-primary);
            border-radius: 50%;
            opacity: 0.6;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes rotate-reverse {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }
        
        .section-title {
            margin: 0.5rem 0 1rem;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }
        
        .title-tagline {
            font-size: 0.95rem;
            opacity: 0.8;
            max-width: 80%;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 1;
        }
        
        /* Pillars section styles */
        .pillars-section {
            position: relative;
            z-index: 2;
            padding: 0 2rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .pillar-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .pillar-col {
            flex: 0 0 100%;
            width: 100%;
            padding: 0 15px;
            margin-bottom: 1.2rem;
        }
        
        @media (min-width: 768px) {
            .pillar-col {
                flex: 0 0 50%;
                width: 50%;
            }
        }
        
        @media (min-width: 992px) {
            .pillar-col {
                flex: 0 0 33.333%;
                width: 33.333%;
            }
        }
        
        .pillar-box {
            background-color: rgba(15, 14, 12, 0.7);
            border-radius: 8px;
            height: 100%;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .pillar-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--ucg-primary);
        }
        
        .pillar-header {
            padding: 1.2rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        
        .pillar-title-group {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
        }
        
        .pillar-icon {
            margin-right: 1rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(212,185,91,0.1);
            border-radius: 50%;
            color: var(--ucg-primary);
            font-size: 1.2rem;
        }
        
        .pillar-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--ucg-primary);
        }
        
        .pillar-title-text {
            line-height: 1.3;
        }
        
        .pillar-name {
            font-weight: 600;
            color: var(--ucg-primary);
            margin-bottom: 0.2rem;
            font-size: 1.1rem;
        }
        
        .pillar-description {
            font-size: 1rem;
            font-weight: 400;
            margin: 0;
            opacity: 0.9;
        }
        
        .toggle-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            color: var(--ucg-primary);
            border: 1px solid rgba(212,185,91,0.3);
            background-color: rgba(212,185,91,0.05);
            border-radius: 4px;
            padding: 0.4rem;
            margin-top: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.85rem;
        }
        
        .toggle-btn:hover {
            background-color: rgba(212,185,91,0.1);
        }
        
        .toggle-icon {
            margin-left: 0.5rem;
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .toggle-icon svg {
            width: 12px;
            height: 12px;
            fill: var(--ucg-primary);
            vertical-align: middle;
        }
        
        .pillar-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: rgba(0,0,0,0.2);
        }
        
        .pillar-box.active .pillar-content {
            padding: 1.5rem;
            max-height: 300px;
            overflow-y: auto;
            flex-grow: 1;
        }
        
        .pillar-box.active .toggle-icon {
            transform: rotate(180deg);
        }
        
        .pillar-box.active .toggle-btn {
            background-color: rgba(212,185,91,0.15);
        }
        
        .policy-list {
            padding-left: 1.2rem;
            margin-bottom: 0;
        }
        
        .policy-list li {
            margin-bottom: 0.5rem;
            position: relative;
            line-height: 1.5;
            font-size: 1rem;
            font-weight: 400;
        }
        
        .policy-list li:last-child {
            margin-bottom: 0;
        }
        
        /* Consent section styles */
        .consent-section {
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid rgba(212,185,91,0.1);
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .consent-btn {
            background-color: var(--ucg-primary);
            color: var(--ucg-background);
            font-weight: 600;
            padding: 0.75rem 2.5rem;
            border-radius: 6px;
            border: none;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }
        
        .consent-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212,185,91,0.3);
            background-color: #e0c368;
        }
        
        .consent-note {
            font-size: 0.85rem;
            opacity: 0.7;
            margin-top: 1rem;
        }

        .check-icon {
            display: inline-block;
            margin-right: 5px;
        }
        
        .check-icon svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            vertical-align: middle;
        }
    

        /* health care service card */

        /* Services section */
        .ucg-services-wrapper {
          padding: 60px 0;
          background-color: #f5f7fa;
      }

      .ucg-inner-container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 15px;
      }

      .ucg-main-heading {
          font-size: 40px;
          font-weight: 700;
          color: #1f2937;
          margin-bottom: 8px;
      }

      .ucg-tagline {
          font-size: 16px;
          color: #4b5563;
          margin-bottom: 40px;
          max-width: 650px;
      }

      .ucg-cards-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 24px;
      }

      /* Service Card Styling */
      .ucg-service-box {
          background-color: #ffffff;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          height: 100%;
          border: 1px solid #e5e7eb; /* Adding border to match the image */
      }

      .ucg-service-box:hover {
          transform: translateY(-4px);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      .ucg-image-wrap {
          height: 180px;
          overflow: hidden;
      }

      .ucg-card-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
      }

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

      .ucg-card-footer {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 16px 20px;
          border-top: 1px solid #e5e7eb; /* Adding top border to match the image */
      }

      .ucg-card-title {
          font-size: 18px;
          font-weight: 600;
          color: #1f2937;
          margin: 0;
          line-height: 1.3;
      }

      .ucg-arrow-link {
          display: flex;
          align-items: center;
          justify-content: center;
      }

      .ucg-arrow-svg {
          width: 24px;
          height: 24px;
      }

      /* Contact Card Styling */
      .ucg-contact-box {
          background-color: #374151;
          border-radius: 8px;
          overflow: hidden;
          color: white;
          position: relative;
          height: 100%;
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          border: 1px solid #2d3748; /* Adding border to match the image */
      }

      .ucg-contact-inner {
          padding: 30px;
          position: relative;
          z-index: 2;
          height: 100%;
      }

      .ucg-contact-heading {
          font-size: 40px;
          font-weight: 600;
          margin: 0 0 16px 0;
      }

      .ucg-contact-desc {
          font-size: 14px;
          line-height: 1.5;
          margin-bottom: 24px;
          opacity: 0.9;
      }

      .ucg-action-btn {
          display: inline-flex;
          align-items: center;
          background-color: white;
          color: #374151;
          padding: 8px 20px;
          border-radius: 30px;
          text-decoration: none;
          font-weight: 600;
          font-size: 14px;
          transition: transform 0.3s ease;
      }

      .ucg-action-btn:hover {
          transform: translateY(-2px);
      }

      .ucg-arrow-icon {
          margin-left: 6px;
      }

      .ucg-robot-wrapper {
          position: absolute;
          bottom: 0;
          right: 0;
          width: 100px;
      }

      .ucg-robot-img {
          width: 100%;
          height: auto;
          opacity: 0.8;
      }

      /* Animation on Scroll */
      @keyframes ucgFadeInUp {
          from {
              opacity: 0;
              transform: translateY(20px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .ucg-service-box, .ucg-contact-box {
          animation: ucgFadeInUp 0.6s ease forwards;
          opacity: 0;
      }

      .ucg-service-box:nth-child(1) { animation-delay: 0.1s; }
      .ucg-service-box:nth-child(2) { animation-delay: 0.2s; }
      .ucg-service-box:nth-child(3) { animation-delay: 0.3s; }
      .ucg-service-box:nth-child(4) { animation-delay: 0.4s; }
      .ucg-service-box:nth-child(5) { animation-delay: 0.5s; }
      .ucg-contact-box { animation-delay: 0.6s; }

      /* Responsive Design */
      @media (max-width: 992px) {
          .ucg-cards-grid {
              grid-template-columns: repeat(2, 1fr);
          }
          
          .ucg-contact-box {
              grid-column: span 2;
          }
      }

      @media (max-width: 768px) {
          .ucg-main-heading {
              font-size: 28px;
          }
          
          .ucg-tagline {
              font-size: 15px;
          }
      }

      @media (max-width: 576px) {
          .ucg-cards-grid {
              grid-template-columns: 1fr;
          }
          
          .ucg-contact-box {
              grid-column: span 1;
          }
          
          .ucg-image-wrap {
              height: 180px;
          }
      }


      /* Who we are  */

      


      /* Our vision and misson  */
    .ucg-about-section {
        padding: 80px 0;
        background-color: #f5f7fa;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    
    .ucg-about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .ucg-about-row {
        display: flex;
        align-items: flex-start;
    }
    
    .ucg-title-column {
        flex: 0 0 30%;
        max-width: 30%;
        padding-right: 20px;
    }
    
    .ucg-section-heading {
        font-size: 40px;
        font-weight: 600;
        color: #2c3e50;
        margin: 0;
        line-height: 1.2;
    }
    
    .ucg-vertical-line {
        width: 4px;
        background-color: #0099ff;
        margin: 0 30px;
        align-self: stretch;
        min-height: 150px;
    }
    
    .ucg-content-column {
        flex: 1;
        padding-left: 20px;
    }
    
    .ucg-lead-text {
        font-size: 16px;
        color: #2c3e50;
        line-height: 1.5;
        margin-bottom: 24px;
        /* font-weight: 500; */
    }
    
    .ucg-body-text {
        font-size: 16px;
        color: #2c3e50 ;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Responsive design */
    @media (max-width: 992px) {
        .ucg-about-row {
            flex-direction: column;
        }
        
        .ucg-title-column {
            flex: 0 0 100%;
            max-width: 100%;
            padding-right: 0;
            margin-bottom: 20px;
        }
        
        .ucg-vertical-line {
            width: 100%;
            height: 4px;
            margin: 20px 0;
            min-height: auto;
        }
        
        .ucg-content-column {
            padding-left: 0;
        }
        
        .ucg-section-heading {
            font-size: 40px;
        }
    }
    
    @media (max-width: 576px) {
        .ucg-about-section {
            padding: 50px 0;
        }
        
        .ucg-section-heading {
            font-size: 40px;
        }
        
        .ucg-lead-text {
            font-size: 18px;
        }
    }



    /* Our vision and misson  */

    .ucv-vision-mission-section {
      padding: 80px 0;
      background-color: #fff;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  .ucv-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  }
  
  .ucv-row {
      display: flex;
      align-items: center;
      margin-bottom: 80px;
  }
  
  .ucv-row:last-child {
      margin-bottom: 0;
  }
  
  .ucv-reversed-row {
      flex-direction: row-reverse;
  }
  
  .ucv-content-column {
      flex: 0 0 50%;
      padding: 0 20px;
  }
  
  .ucv-image-column {
      flex: 0 0 50%;
      padding: 0 20px;
  }
  
  .ucv-heading-wrapper {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 20px;
      position: relative;
  }
  
  .ucv-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 10px;
  }
  
  .ucv-icon svg {
      width: 100%;
      height: 100%;
  }
  
  .ucv-title {
      font-size: 40px;
      font-weight: 600;
      color: #2c3e50;
      margin: 0 0 10px 0;
  }
  
  .ucv-underline {
      height: 2px;
      width: 80px;
      background-color: #0099ff;
      margin-bottom: 20px;
  }
  
  .ucv-text {
      font-size: 18px;
      line-height: 1.6;
      color: #4a5568;
      margin: 0;
  }
  
  .ucv-image-container {
      width: 100%;
      height: 0;
      padding-bottom: 70%;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .ucv-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  /* Responsive design */
  @media (max-width: 992px) {
      .ucv-row {
          flex-direction: column;
          margin-bottom: 60px;
      }
      
      .ucv-reversed-row {
          flex-direction: column;
      }
      
      .ucv-content-column,
      .ucv-image-column {
          flex: 0 0 100%;
          width: 100%;
          padding: 0;
          margin-bottom: 30px;
      }
      
      .ucv-image-column {
          order: -1;
      }
      
      .ucv-reversed-row .ucv-image-column {
          order: -1;
      }
  }
  
  @media (max-width: 576px) {
      .ucv-vision-mission-section {
          padding: 50px 0;
      }
      
      .ucv-title {
          font-size: 24px;
      }
      
      .ucv-text {
          font-size: 16px;
      }
      
      .ucv-image-container {
          padding-bottom: 60%;
      }
  }