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

/*  */
.feature-section {
  font-family:Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width:100%;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;


}

/* Text Content Style */
.text-content {
  width: 50%;
}

.feature-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0073e6;
  margin-bottom: 20px;
}

.feature-description {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* Image Content Style */
.image-content {
  width: 40%;
}

.image-content img {
  width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    align-items: center;
  }

  .text-content,
  .image-content {
    width: 100%;
    text-align: center;
  }

  .feature-heading {
    font-size: 22px;
  }

  .feature-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px; /* Adds space between text and image */
  }

  .text-content,
  .image-content {
    width: 100%;
    text-align: center;
  }

  .feature-heading {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .feature-description {
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: justify;
  }

  .image-content img {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
  }
}



/* General Section Style */
.integration-section {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
}

/* Heading Style */
.heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0073e6;
  margin-bottom: 20px;
  text-align:left; /* Aligns heading to the left */
}

/* First Paragraph Style */
.first-paragraph {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
  text-align: left; /* Aligns first paragraph to the left */
}

/* Image Style */
.image-container {
  display: flex;
  justify-content: center; /* Centers image horizontally */
  align-items: center; /* Centers image vertically, if needed */
  margin-bottom: 30px;
}

.image-container img {
  width: 100%;
  max-width: 600px;
  height: auto;

}


/* Second Paragraph Style */
.second-paragraph {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  text-align: left; /* Aligns second paragraph to the left */
}

/* Responsive Design */
@media (max-width: 768px) {
  .heading {
    font-size: 1.5rem;
  }

  .first-paragraph,
  .second-paragraph {
    font-size: 14px;
  }
}
/* recrument section starts here */

.recruitment-section {
  font-family: 'Open Sans', sans-serif !important;
  background-color: #f3f8fb;
  padding: 40px;
  text-align: center;
}

/* Styling for the title */
.recruitment_title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0086d3;
  margin-bottom: 10px;
}

/* Styling for the description text */
.recruitment_description {
  color: #000000;
  font-size: 14px;
  width: 100%;
  margin: 0 auto 30px;
}

/* Styling for the card container */
.recruitment_card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

/* Individual card styling */
.recruitment_card {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #01acb5;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  transition: transform 0.2s;
}

/* Hover effect for cards */
.recruitment_card:hover {
  transform: scale(1.05);
}

/* recrument section ends here */

/* onboarding section ends here */

.onboarding {
  width:100%;
  margin: 0 auto;
  background-color: white;
  padding: 20px;


}
.onboarding h1 {
  color: #0099cc;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 15px;

}
.onboarding_description {
  font-size: 14px;
  text-align: center;
  color: #000000;
  margin-bottom: 35px;
  padding: 0 10%;
}
.onboarding_timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
}
.onboarding_timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ccc;
  z-index: 1;
}
.onboarding_step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14%;
  position: relative;
  z-index: 2;
}
.onboarding_icon {
  width: 80px;
  height: 80px;
  background-color: #0099cc;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.onboarding_icon::before {
  content: '';
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  border: 2px solid #0099cc;
}
.onboarding_icon img {
  width: 40px;
  height: 40px;
  filter: invert(1);
}
.onboarding_step-number {
  font-size: 2em;
  color: #999;
  margin-bottom: 10px;
}
.onboarding_step-title {
  text-align: center;
  font-size: 0.9em;
  color: #333;
  line-height: 1.5;
}
.onboarding_orange-bar {
  width: 90%;
  height: 5px;
  background-color: #ff9900;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .timeline {
      flex-direction: column;
  }
  .step {
      width: 70%;
      margin-bottom: px;
  }
  .timeline::before {
      display: none;
  }
  .icon::before {
      display: none;
  }
}

/* onboarding section ends here */

/* core hr section starts here */


.core-hr-section {
  text-align: center;
  padding: 40px;
  color: #000000;
}

.core-hr-section h2 {
  font-size: 1.5rem;
  color: #0083a0;
  margin-bottom: 20px;
}

.core-hr-description {
  font-size: 1rem;
  color: #000000;
  width: 90%;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; /* Reduced gap between items */
  justify-content: center; /* Center the grid in the container */
  max-width: 1200px;
  margin: 0 auto;
}

.core-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center both image and text vertically */
  margin: 0 auto;
}

.core-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.core-item p {
  font-size: 0.9rem;
  color: #000000;
}


/* core hr section ends here */

/* time section starts here */

.time-section {
  font-family: 'Open Sans', sans-serif;
  background-color: #f3f8fb;
  padding: 40px;
  text-align: center;
}

/* Styling for the title */
.time-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0086d3;
  margin-bottom: 10px;
}

/* Styling for the description text */
.time-description {
  color: #000;
  font-size: 14px;
  width: 100%;
  margin: 0 auto 30px;
}

/* Styling for the card container */
.time-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual card styling */
.time-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #01acb5;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: transform 0.2s, box-shadow 0.2s;

}

/* Hover effect for cards */
.time-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* time section ends here */

/* employee section starts here */
.Employee-section {
  font-family:Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width:100%;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;


}

/* Text Content Style */
.Employee-content {
  width: 50%;
}

.Employee-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0073e6;
  margin-bottom: 20px;
}

.Employee-description {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* Image Content Style */
.Employee-content {
  width: 40%;
}

.Employee-content img {
  width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Employee-section {
    flex-direction: column;
    align-items: center;
  }

  .Employee-content,
  .Employee-content {
    width: 100%;
    text-align: center;
  }

  .Employee-heading {
    font-size: 22px;
  }

  .Employee-description {
    font-size: 14px;
  }
}
/* Employee section ends here */

/* talent management section starts here */

.talent-section {
  text-align: center;
  padding: 40px;
  color: #000000;
}

.talent-section h2 {
  font-size: 1.5rem;
  color: #0083a0;
  margin-bottom: 20px;
}

.talent-description {
  font-size: 1rem;
  color: #000000;
  width: 90%;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px; /* Reduced gap between items */
  justify-content: center; /* Center the grid in the container */
}

.talent-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center both image and text vertically */
  margin: 0 auto;
}

.talent-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.talent-item p {
  font-size: 0.9rem;
  color: #000000;
}

/* talent management section ends here */

/* Rewards section starts here */
.Rewards-section {
  font-family: 'Open Sans', sans-serif;
  background-color: #f3f8fb;
  padding: 40px;
  text-align: center;
}

/* Styling for the title */
.Rewards-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0086d3;
  margin-bottom: 10px;
}

/* Styling for the description text */
.Rewards-description {
  color: #000;
  font-size: 14px;
  width: 100%;
  width:100%;
  margin: 0 auto 30px;
}

/* Styling for the card container */
.Rewards-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual card styling */
.Rewards-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #01acb5;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: transform 0.2s, box-shadow 0.2s;

}

/* Hover effect for cards */
.Rewards-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
/* Rewards section ends here */
/* Analytics Section starts here */

.analytics-section {
  background: linear-gradient(135deg, #1a95be, #00b2cc);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.analytics-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.analytics-description {
  font-size: 14px;
  width: 100%;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #d9eef7;
}

/* Card Container Styling */
.analytics-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Individual Card Styling */
.analytics-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #333;
  text-align: center;
  transition: transform 0.3s;
}

.analytics-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Center both image and text vertically */
  margin: 0 auto;
}

.analytics-card p {
  font-size: 14px;
  color: #333;
}

/* Hover Effect */
.analytics-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
/* Analytics Section ends here */

/* Travel Section starts here */

/* Container Styling */
.travel_container {
  font-family: open sans, sans-serif !important;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
  background-color: #ffffff;
}

h1 {
  font-size: 2em;
  /* color: #0073b1; */
  margin-bottom: 20px;
}

/* Content Layout */
.travel_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px; /* Adjust max-width for central alignment */
  margin: 0 auto;
}

/* Left Text */
.travel_text {
  flex: 1;
  font-size: 1em;
  color: #333;
  text-align: left;
  max-width: 30%;
  padding-right: 20px;
}

/* Center Image */
.travel_center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 30%;
}

.travel_center img {
  width: 100%;
  max-width: 350px; /* Increased maximum width */
  height: auto;
  max-height: 350px; /* Added max height to increase size */
  border-radius: 50%;

}

/* Right Features */
.travel_features {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  max-width: 30%;
  padding-left: 20px;
}

.travel_item {
  background-color: #e9f3f9;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 15px;
  font-size: 0.9em;
  color: #0073b1;
  width: 100%; /* Make the items take full width of the parent */
  height: 50px; /* Set a fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; /* Ensure padding is included in height */
}
/* .travel_item .ri-checkbox-circle-line{
  color: #0073b1;
  align-items: flex-start;

} */

/* travel section ends here */

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