/* CSS Variables for Theme Consistency */
:root {
--primary-color: #92C7CF;
    --secondary-color: #EBFFD8;
    --accent-color: #92C7CF;
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.246);
    --shadow-light: rgba(255, 182, 193, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-out;
    --border-radius: 16px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
}

/* Focus Management for Accessibility */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-smooth);
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px var(--shadow-light);
    padding: 0.75rem var(--spacing-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 70px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1000;
    transition: var(--transition-smooth);
    flex-wrap: wrap;

}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-light);
}

.nav-link i {
    font-size: 0.9rem;
}

/* Technologies Dropdown Styles */
.technologies-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: var(--spacing-xs);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.technologies-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 16px 64px var(--shadow-light);
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    margin-top: var(--spacing-sm);
    overflow: hidden;
}

.technologies-dropdown.active .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-content {
    display: flex;
    min-height: 350px;
}

.mega-categories {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid var(--text-dark);
    padding: var(--spacing-md) 0;
}

.mega-category {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    color: var(--text-primary);
    font-family: inherit;
    text-align: left;
}

.mega-category:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mega-category.active {
    background: rgba(255, 255, 255, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 500;
}

.category-header i:first-child {
    font-size: 1.1rem;
    color: var(--accent-color);
    width: 20px;
}

.category-arrow {
    margin-left: auto;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.mega-category:hover .category-arrow {
    transform: translateX(3px);
}

.mega-items {
    flex: 2;
    padding: var(--spacing-lg);
    position: relative;
}

.category-items {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-smooth);
}

.category-items.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.items-title {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 0.75rem;
}

.items-title i {
    color: var(--accent-color);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.item-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.item-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border);
    transform: translateX(5px);
}

.item-link i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 16px;
}

/* Mobile Submenu (Hidden on Desktop) */
.mobile-submenu {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: 8px;
    transition: var(--transition-smooth);
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('./Images/AboutUs.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgb(146, 199, 207) 0%,
        rgb(235, 255, 216) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-primary);
    max-width: 800px;
    padding: 0 var(--spacing-xl);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 8px var(--shadow-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border: none;
    padding: var(--spacing-md) 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px var(--shadow-light);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--text-dark);
    
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 48px var(--shadow-light);

}

.cta-button i {
    font-size: 1rem;

}
/* Scrollable Logos Section */
.scrollable-logos {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(146, 199, 207, 0.1) 0%, rgba(235, 255, 216, 0.1) 100%);
  border-radius: var(--border-radius);
}

.scrollable-heading {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  position: relative;
}

.Scroll_container {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.scroll-wrapper {
  display: flex;
  gap: 40px;
  width: max-content;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  animation: scrollLogos 40s linear infinite;
}

.Scroll_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 80px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(146, 199, 207, 0.2);
}

.Scroll_logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 32px rgba(146, 199, 207, 0.3);
  background: rgba(255, 255, 255, 1);
}

.Scroll_logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.Scroll_logo:hover img {
  filter: grayscale(0%);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.Scroll_container:hover .scroll-wrapper {
  animation-play-state: paused;
}

/* Responsive Design for Scrollable Logos */
@media (max-width: 768px) {
  .scrollable-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .Scroll_logo {
    min-width: 100px;
    height: 60px;
    padding: 8px;
  }
  
  .scroll-wrapper {
    gap: 20px;
    padding: 15px 0;
  }
  
  .scrollable-logos {
    padding: 1.5rem 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .scrollable-heading {
    font-size: 1.3rem;
  }
  
  .Scroll_logo {
    min-width: 80px;
    height: 50px;
    padding: 6px;
  }
  
  .scroll-wrapper {
    gap: 15px;
    padding: 10px 0;
  }
}



/*  */
/*  */

.scrollable-logos1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

.scrollable-heading1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.scroll-container1 {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.scroll-wrapper1 {
  display: flex;
  gap: 40px;
  animation: scrollRightToLeft 60s linear infinite;
  width: max-content;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}

.Scroll_logo1 img {
  height: 6rem;
  width: auto;
  display: block;
  object-fit: contain;
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/*  */

.value__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.value {
  font-size: 1.5rem;
  /* font-weight: bold; */
  margin-bottom: 10px;
  text-align: center;
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.value_description {
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 600px;
  text-align: center;
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.card-row {
  display: flex;
  gap: 15px;
}

.Value_card {
  position: relative;
  width: 240px;
  height: 320px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  transition: color 0.5s;
}

.Value_card::before,
.Value_card::after {
  position: absolute;
  content: "";
  width: 20%;
  height: 20%;
  background-color: var(--secondary-color);
  transition: all 0.5s;
}

.Value_card::before {
  top: 0;
  right: 0;
  border-radius: 0 15px 0 100%;
}

.Value_card::after {
  bottom: 0;
  left: 0;
  border-radius: 0 100% 0 15px;
}

.Value_card:hover::before,
.Value_card:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all 0.5s;
}

.Value_card:hover {
  color: transparent;
}

.Value_card:hover::after {
  content: attr(data-hover);
  font-size: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(0, 0, 0);
}

@media (max-width: 768px) {
  .value {
    font-size: 22px;
    padding: 0 10px;
  }

  .value_description {
    font-size: 14px;
    padding: 0 15px;
  }

  .card-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .Value_card {
 width: 250px;
  height: 320px;
  }

  .Value_card:hover::after {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .value {
    font-size: 18px;
  }

  .value_description {
    font-size: 13px;
  }

  .Value_card {
    height: 220px;
    font-size: 20px;
  }

  .Value_card:hover::after {
    font-size: 18px;
  }
}

/*  */

:root {
  --primary: #92C7CF;
  --secondary: #EBFFD8;
  --text-dark: #000000;
  --text-light: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --gradient-main: linear-gradient(135deg, #EBFFD8 0%, #92C7CF 100%);
}

.tech-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  background: #ffffff;
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.technologies-content {
  max-width: 600px;
  padding: 20px;
}

.technologies-content h1 {
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: var(--text-dark);
  text-align: left;
}

#dynamic-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.header__btns a {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-light);
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header__btns a:hover {
  background-color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--primary);
  color: var(--text-dark);
}

.technologies-btns {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  
}

.technologies-btn {
  background-color: var(--text-light);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid #92C7CF;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   text-decoration: none;
}

.technologies-btn:hover {
  background: var(--gradient-main);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary);
  color: var(--text-dark);
}

.tech-person_info {
  margin-top: 50px;
  font-size: 14px;
  color: var(--text-dark);
}

.technologies-person {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  
}

.image-wrapper {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

}

.person-image {
  max-width: 350px;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

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

.technologies-menu {
  flex: 1;
  padding: 20px;
  text-align: right;
}

.technologies-menu ul {
  list-style: none;
  padding: 0;
  
}

.technologies-menu li {
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  
}

.technologies-menu li button {
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 650;
  color: var(--text-dark);
  padding: 10px 15px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  
}

.technologies-menu li button i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.technologies-menu li button:hover {
  color: var(--text-dark);
  transform: translateX(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: var(--secondary);
  border-radius: 20px;
  border: 1px solid var(--primary);
  
}

.technologies-menu li button:hover i {
  transform: translateX(-5px);
  color: var(--primary);
  user-select: none;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .tech-container {
    flex-direction: column;
    padding: 20px;

  }

  .technologies-btns {
    justify-content: center;
    margin-top: 20px;

  }

  .image-wrapper {
    padding: 0;
    align-items: center;

  }

  .technologies-person,
  .technologies-menu {
    margin-top: 30px;
    text-align: center;
  }

  .technologies-menu li {
    text-align: center;
    margin-left: 0;
  }

  .technologies-content {
    text-align: center;
  }
}

/* tecnolgies  */


/*  */

.Pharma_container {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
  margin: 20px auto;
  padding: 20px;
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); */
  background-color: #ffffff;
  margin-top: 2rem;
}

.industries-heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.Pharma_tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.Pharma_tab-button {
  flex: 1;
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 30px;
  background: #ffffff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.Pharma_tab-button:hover {
  background: var(--accent-color);
  color: #000000;
}

.Pharma_tab-button.active {
  background: var(--primary-color);
  color: #000000;
}

.Pharma_content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.Pharma_text {
  flex: 2;
}

.Pharma_text h2 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 15px;
}

.Pharma_text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.Pharma_stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.Pharma_stats div {
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  background: #eaf9ff;
  font-weight: bold;
  flex: 1;
  text-align: center;
}

.Pharma_image {
  flex: 1;
  text-align: center;
}

.Pharma_image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.Pharma_image img:hover {
  transform: scale(1.05);
}

/* Additional Mobile-Friendly Styles */
@media (max-width: 768px) {
  .Pharma_tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .Pharma_tab-button {
    margin: 5px 0;
    width: 100%;
  }

  .Pharma_content {
    flex-direction: column;
    align-items: center;
  }

  .Pharma_text, .Pharma_image {
    width: 100%;
    text-align: center;
  }

  .Pharma_image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .industries-heading {
    font-size: 1.5rem;
  }

  .Pharma_tab-button {
    font-size: 14px;
    padding: 8px 16px;
  }

  .Pharma_text h2 {
    font-size: 20px;
  }

  .Pharma_text p {
    font-size: 14px;
  }

  .Pharma_stats div {
    font-size: 12px;
    padding: 8px;
  }
}


/*  */

/* our services */

.Oracle_container {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  margin-top: -1rem;
  margin-bottom: 5rem;
}

.main-heading {
  text-align: center;
  color: var(--accent-color);
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.intro-text {
  text-align: center;
  color: #000000;
  font-size: 14px;
  margin-bottom: 5px;
}

.Oracle_buttons {
  text-align: center;
  margin-bottom: 5px;
}

.Oracle_btn {
  background: linear-gradient(135deg, #92C7CF, #92C7CF);
  color: rgb(0, 0, 0);
  border: none;
  padding: 12px 24px;
  margin: 10px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 5px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.Oracle_btn:hover {
  background: linear-gradient(135deg, #92C7CF, #ffffff);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #000000;
}

.Oracle_btn.active {
  background-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #000000;
  border: 1px solid var(--primary-color);
}

.Oracle_btn.active:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #000000;

}

.Oracle_content {
  margin-top: 20px;
}

.section-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 5px;
  text-align: center;
}

.section-paragraph {
  color: #000000;
  font-size: 14px;
  margin-bottom: 5px;
  text-align: center;
}
/* 1st button 5 boxes css starts from here */

.services-box1 {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center-align boxes horizontally */
  gap: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-list1 {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.33% - 30px); /* Set width to one-third of the row minus the gap */
  max-width: calc(33.33% - 30px);
}

.service-list1:nth-child(4),
.service-list1:nth-child(5) {
  flex: 1 1 calc(50% - 30px); /* Set width to half for the second row */
  max-width: calc(50% - 30px);
}

.service-list1:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-list1 {
    flex: 1 1 calc(50% - 20px); /* Two boxes per row */
    max-width: calc(50% - 20px);
  }

  .service-list1:nth-child(4),
  .service-list1:nth-child(5) {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .service-list1 {
    flex: 1 1 100%; /* Single box per row */
    max-width: 100%;
  }
}

.service-heading1 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
  color: var(--primary-color);
  text-align: center;
}

.service-list1 ul {
  padding-left: 0;
  list-style: none;
  color: #555;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
}

.service-item1 {
  display: flex;
  align-items: center;
  justify-content: start; /* Align bullets uniformly */
  margin-bottom: 5px;
  font-size: 14px;
}

.service-item1::before {
  content: "\2022";
  color: var(--primary-color); /* Bullet color */
  font-weight: bold;
  margin-right: 10px;
}



/* css for next three buttons starts from here */

.services-box {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
  gap: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-list:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.service-heading {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
  color: var(--primary-color);
  text-align: center;
}

.service-list ul {
  padding-left: 0;
  list-style: none;
  color: #555;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: start; /* Align bullets uniformly */
  margin-bottom: 5px;
}

.service-item::before {
  content: "\2022";
  color: var(--primary-color); /* Bullet color */
  font-weight: bold;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-box {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
  }
}

@media (max-width: 480px) {
  .services-box {
    grid-template-columns: repeat(1, 1fr); /* 1 column for very small screens */
  }
}


/*  css for next three buttons ends from here */

.service-cards {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Ensures cards wrap on smaller screens */
}

.service-card {
  width: 18%; /* Adjusts the card size for responsiveness */
  height: 150px; /* Ensures consistent card height */
  border: 1px solid #ffffff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex; /* Enables flexbox */
  flex-direction: column; /* Aligns items vertically */
  align-items: center; /* Centers content horizontally */
  justify-content: center; /* Centers content vertically */
  padding: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.service-card:nth-child(1) {
  background-color: #f8d7da; /* Light Red */
}

.service-card:nth-child(2) {
  background-color: #d4edda; /* Light Green */
}

.service-card:nth-child(3) {
  background-color: #d1ecf1; /* Light Blue */
}

.service-card:nth-child(4) {
  background-color: #fff3cd; /* Light Yellow */
}

.service-card:nth-child(5) {
  background-color: #e2e3e5; /* Light Gray */
}

.service-card:nth-child(6) {
  background-color: var(--accent-color); /* Light Sky Blue */
}

.card-logo {
  width: 60px;
  height: 60px;
  display: block; /* Ensures it's treated as a block element */
  margin: 0 auto; /* Centers the logo horizontally */
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-top: 10px;
  text-align: center; /* Ensures text is centered */
}

/* Extra Responsive Enhancements */
@media (max-width: 768px) {
  .Oracle_container {
    padding: 30px 20px;
  }

  .main-heading {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .intro-text,
  .section-paragraph {
    font-size: 14px;
    padding: 0 10px;
  }

  .Oracle_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .Oracle_btn {
    flex: 1 1 100%;
    margin: 8px 5px;
    font-size: 14px;
  }

  .section-title {
    font-size: 20px;
    padding: 0 10px;
  }

  .services-box1 {
    gap: 20px;
    padding: 0 10px;
  }

  .service-list1 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-heading1 {
    font-size: 18px;
  }

  .service-item1 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .Oracle_container {
    padding: 20px 10px;
  }

  .main-heading {
    font-size: 20px;
  }

  .Oracle_btn {
    font-size: 14px;
    padding: 10px;
  }

  .service-heading1 {
    font-size: 14px;
  }

  .service-item1 {
    font-size: 13px;
  }
}


/* our servies */

.container1 {
  display: flex;
  width: 100%;
  margin-top: -4rem;
  

}
.left, .right {
  flex: 1;
  padding: 40px;
}
.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.left h2 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.quote {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.author {
  font-style: italic;
  color: #666;
  margin-top: 20px;
}
.buttons {
  margin-top: 40px;
}
.buttons button {
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  padding: 10px 18px;
  font-size: 20px;
  margin-right: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-left: 5px solid var(--primary-color);
  border-radius: 30px;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .right {
    padding: 0;
  }
}
/* Additional Mobile-Friendly Styles */
@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
    padding: 20px;
  }

  .left, .right {
    padding: 20px;
    width: 100%;
  }

  .left h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .quote {
    font-size: 14px;
  }

  .author {
    font-size: 14px;
    margin-top: 15px;
  }

  .buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .buttons button {
    font-size: 18px;
    padding: 8px 16px;
  }

  .right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border-left: none;
  }
}

@media (max-width: 480px) {
  .left h2 {
    font-size: 20px;
  }

  .quote {
    font-size: 14px;
  }

  .author {
    font-size: 12px;
  }

  .buttons button {
    font-size: 14px;
    padding: 6px 12px;
  }
}
/*  */

/*  how we work */

.HowWeWork_container {
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: #000000;
  background-color: #ffffff;
  text-align: center;
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.HowWeWork_main-title {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  align-items: center;
  margin-top: -1rem;
}

.HowWeWork_intro-text {
  color: rgb(0, 0, 0);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
  align-items: center;
}

.HowWeWork_steps-container {
  position: relative;
  padding-top: 1rem;
}

.HowWeWork_step-card {
  position: relative;
  background: var(--secondary-color);
  padding: 1.5rem;
  border-radius: 1.5rem;
  max-width: 320px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.HowWeWork_step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
  line-height: 1.4;
  text-align: left;
}

.HowWeWork_step-card p {
  color: #000000;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.HowWeWork_time-badge {

  display: inline-block;
  background-color: black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  bottom: -1rem;
  left: 0.5rem;
}

.HowWeWork_step-label {
  position: absolute;
  top: -2rem;
  right: 1rem;
  background-color:transparent;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: bold;
}

/* Positioning for each step */
#step1 {
  margin-left: 0px;
  margin-top: 2rem;
  z-index: 4;
} 

#step2 {
  margin-left: 350px;
  margin-top: -10rem;
  z-index: 3;
}

#step3 {
  margin-left: 700px;
  margin-top: -9rem;
  z-index: 2;
}

#step4 {
  margin-left: 1050px;
  margin-top: -9rem;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  #step2 { margin-left: 50px; }
  #step3 { margin-left: 100px; }
  #step4 { margin-left: 150px; }
}

@media (max-width: 768px) {

  h1 {
      font-size: 1.5rem;
  }

  .HowWeWork_step-card {
      margin-left: 0 !important;
      margin-top: 1rem !important;
      max-width: 100%;
  }

  .HowWeWork_intro-text {
      font-size: 14px;
  }
}
/* how we work section ends here  */

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-primary);
    padding: 4rem 0 var(--spacing-xl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-section .nav-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    /* gap: var(--spacing-sm); */
}



.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);

}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--text-dark);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 24px var(--shadow-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--text-dark);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.partner-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--shadow-light);
}

.partner-logo i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: var(--spacing-sm);
}

.footer-bottom {
    border-top: 1px solid var(--text-dark);
    margin-top: 3rem;
    padding-top: var(--spacing-xl);
    text-align: center;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    animation: ripple-animation 0.6s linear;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    width: 100px; /* Default size */
    height: 100px; /* Default size */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Mobile and Tablet Responsive Styles */
@media (max-width: 1024px) {
    .mega-dropdown {
        min-width: 600px;
    }
    
    .mega-dropdown-content {
        min-height: 300px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: var(--spacing-lg);
    }
    /* .navbar {
    position: fixed;
    top: -15x;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: var(--transition-smooth);
    transform: translateY(0);
} */
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Hide desktop mega dropdown on mobile */
    .mega-dropdown {
        display: none;
    }
    
    /* Show mobile submenu */
    .mobile-submenu {
        display: block;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--border-radius);
        margin-top: var(--spacing-sm);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: var(--transition-smooth);
    }
    
    .technologies-dropdown.active .mobile-submenu {
        max-height: 800px;
        opacity: 1;
        padding: var(--spacing-md);
    }
    
    .nav-menu {
        position: fixed;
        top: -15px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        z-index: 999;
        padding-top: 3rem;
        overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        height: 100vh;
        padding-bottom: 100px; /* Space for scrolling */
        box-shadow: 0 8px 32px var(--shadow-light);
        /* overflow-x: hidden; */
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-menu.hidden {
        transform: translateX(-100%);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  height: 100vh;
  padding-bottom: 100px; /* Space for scrolling */
background-color: var(--secondary-color);
overflow-x: hidden;
    }
    
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-link {
        justify-content: flex-start;
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: 1.1rem;
        width: 100%;
        border-radius: 0;
        text-align: left;
    }
    
    /* Mobile Category Styles */
    .mobile-category {
        margin-bottom: var(--spacing-md);
    }
    
    .mobile-category:last-child {
        margin-bottom: 0;
    }
    
    .mobile-category-toggle {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
        color: var(--text-primary);
        padding: var(--spacing-md);
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        cursor: pointer;
        transition: var(--transition-smooth);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }
    
    .mobile-category-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .mobile-category-toggle.active {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .mobile-arrow {
        margin-left: auto;
        font-size: 0.8rem;
        transition: var(--transition-smooth);
    }
    
    .mobile-category-toggle.active .mobile-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-category-items {
        max-height: 0;
        overflow: hidden;
        transition: var(--transition-smooth);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        margin-top: var(--spacing-sm);
    }
    
    .mobile-category-items.active {
        max-height: 500px;
        padding: var(--spacing-sm);
    }
    
    .mobile-item-link {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        color: var(--text-secondary);
        text-decoration: none;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: 6px;
        transition: var(--transition-smooth);
        font-size: 0.9rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .mobile-item-link:hover {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }
    
    .mobile-item-link i {
        color: var(--accent-color);
        font-size: 0.8rem;
        width: 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-container {
        padding: 0.75rem var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem var(--spacing-xl);
        font-size: 1rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .mobile-category-toggle {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 15px;
    }
    
    .mobile-item-link {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
    }
}



/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.2);
        --glass-border: rgba(255, 255, 255, 0.4);
        --shadow-light: rgba(0, 0, 0, 0.5);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
}