/* 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/Co.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 {
    margin-top: 3rem;
    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;

}

/* Hero Logo */
.hero-logo {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    max-width: 190px;
    width: 250%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px #92C7CF;
    transition: #92C7CF;
    opacity: 0.9;
     background-color: #ffffffc0;
}

.hero-logo-image:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 12px 48px #92C7CF;
}
/* navigation end here */

/* microsoft 365 welcome page starts from here */
.copilot-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* background-image: url("assets/promobackround.png"); */
  background-size: cover;
  background-position: center;
  margin-top: 10rem;
  
}

.copilot-section:hover {
  transform: translateY(-5px);

}

.copilot_content {
  max-width: 50%;
}

.copilot_logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.copilot_logo:hover {
  transform: scale(1.1);
}

.copilot-section h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  display: inline-block;
}

.copilot-section h1::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: radial-gradient(circle at 10% 20%, rgb(253, 239, 132) 0%, rgb(247, 198, 169) 54.2%, rgb(21, 186, 196) 100.3%);
  transition: width 0.3s ease;
}

.copilot-section h1:hover::after {
  width: 100%;
}

.copilot-section p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.copilot_demo-button {
  background: radial-gradient(circle at 10% 20%, rgb(253, 239, 132) 0%, rgb(247, 198, 169) 54.2%, rgb(21, 186, 196) 100.3%);
  color: #474747;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.copilot_demo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.copilot_demo-button:hover {
  background: linear-gradient(109.6deg, rgb(253, 199, 141) 11.3%, rgb(249, 143, 253) 100.2%);
  box-shadow: 0 5px 15px rgba(0, 164, 239, 0.4);
}

.copilot_demo-button:hover::before {
  width: 300px;
  height: 300px;
}

.coppilot-demo {
  text-decoration: none;
}

.copilot_image-container {
  max-width: 55%;
  position: relative;
}

.copilot_dashboard-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .copilot-section {
      flex-direction: column;
      text-align: center;
  }

  .copilot_content, .copilot_image-container {
      max-width: 100%;
  }

  /* .copilot_image-container {
      margin-top: 30px;
  } */
}
/* microsoft 365 welcome page ends from here */

/* microsoft 365 2 page ends from here */

.copilot-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.copilot_card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.copilot_card h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.copilot_card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.copilot_card a {
  text-decoration: none;
  color: #0078d4;
  font-weight: bold;
  font-size: 14px;
}

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

/* microsoft 365 2 page ends from here */


/* microsoft 365 4 page ends from here */

/*  */

.ai_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.ai_header {
  text-align: center;
  margin-bottom: 80px;
}

.ai_header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.ai_header p {
  font-size: 14px;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
}

.ai_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ai_text-content {
  padding-right: 40px;
}

.ai_text-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.ai_text-content p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 32px;
  line-height: 1.6;
}

.ai_create-theme-btn {
  display: inline-block;
  background-color: #1a1a1a;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.ai_create-theme-btn:hover {
  background-color: #333;
}

.ai_image-container {
  position: relative;
}

.ai_feature-image {
  width: 100%;
  height: auto;
  border: 10px solid rgba(223, 159, 247, 0.8) ;
  border-radius: 20px;
  box-shadow: 0 4px 8px 106 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

@media (max-width: 768px) {
  .ai_content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .ai_text-content {
      padding-right: 0;
  }

  .ai_header h1 {
      font-size: 36px;
  }

  .ai_text-content h2 {
      font-size: 30px;
  }
}

/*  */
/*  */
.smarter-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 50px;
  max-width: 1200px;
  width: 100%;
}
.smarter_image-container {
  flex: 1;
  margin-right: 20px;
}
.smarter_image-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}
.smarter_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.smarter_content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333333;
}
.smarter_content p {
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 20px;
}
.smarter_content a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  max-width: 150px;
}
.smarter_content a:hover {
  background-color: #555555;
}
/*  */
/*  */
.edge-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 40px;
  margin: 20px auto;
  max-width: 1200px;
  
}

.edge_left-content {
  max-width: 50%;
}

.edge_left-content h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #333;
}

.edge_left-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.edge_left-content a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
}

.edge_left-content a:hover {
  background-color: #333;
}

.edge_right-content {
  max-width: 50%;
}

.edge_right-content img {
  width: 100%;
}
/*  */
/*  */
.auto-section {
  display: flex;
  background: #fff;
  overflow: hidden;
  max-width: 1200px;
  margin: 20px auto;
  padding: 40px;
}

.auto_image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;


}

.auto_image-container img {
  max-width: 100%;
  height: auto;
  border: 10px solid #e0dfdf;
  border-radius: 10px;
}

.auto_content-container {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auto_content-container h1 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
}

.auto_content-container p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #000000;
}

.auto_learn-more-btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.auto_learn-more-btn:hover {
  background-color: #605f5f;
}
/*  */
/*  */
.translate-section {
  display: flex;
  background: #fff;
  overflow: hidden;
  max-width: 1200px;
  margin: 20px auto;
  padding: 40px;
}

.translate_image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;


}

.translate_image-container img {
  max-width: 100%;
  height: auto;
  border: 10px solid #e0dfdf;
  border-radius: 10px;
}

.translate_content-container {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.translate_content-container h1 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #000000;
}

.translate_content-container p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #000000;
}

.translate_learn-more-btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.translate_learn-more-btn:hover {
  background-color: #605f5f;
}
/*  */

/*  */
.editor_section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  padding: 40px;
}

.editor_content {
  flex: 1;
  padding: 20px;
}

.editor_content h1 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.editor_content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.editor_content button {
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.editor_content button:hover {
  background-color: #333;
}

.editor_image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.editor_image-container img {
  max-width: 90%;
  border: 10px solid #ddd;
  border-radius: 10px;

}

.editor_play-button {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.editor_play-button:hover {
  transform: scale(1.1);
}

.editor_play-button::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 15px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
/*  */


/*  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;
  }
}

.HowWeWork_main-title {
  color: white;
  font-size: 24px;
  margin-bottom: 1rem;
  align-items: center;
  margin-top: -1rem;
}

.HowWeWork_intro-text {
  color: white;
  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: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.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;
}

.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: inherit;
    }
    
    .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: 0.95rem;
    }
    
    .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;
    }
    
}