/* 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/do.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%;
    padding: 20px;
    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 */

.odoo-section {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    /* background-color: #ffffff; */
    color: #1f2937;
    line-height: 1.6;
    padding: 2rem 0;
}

.odoo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.odoo-header {
    text-align: center;
    margin-bottom: 3rem;
}

.odoo-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.odoo-header p {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
}

.odoo-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.odoo-icon-card {
    /* background: #ffffff; */
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.odoo-icon-card:nth-child(1) { animation-delay: 0.1s; }
.odoo-icon-card:nth-child(2) { animation-delay: 0.2s; }
.odoo-icon-card:nth-child(3) { animation-delay: 0.3s; }
.odoo-icon-card:nth-child(4) { animation-delay: 0.4s; }
.odoo-icon-card:nth-child(5) { animation-delay: 0.5s; }
.odoo-icon-card:nth-child(6) { animation-delay: 0.6s; }
.odoo-icon-card:nth-child(7) { animation-delay: 0.7s; }
.odoo-icon-card:nth-child(8) { animation-delay: 0.8s; }
.odoo-icon-card:nth-child(9) { animation-delay: 0.9s; }
.odoo-icon-card:nth-child(10) { animation-delay: 1.0s; }
.odoo-icon-card:nth-child(11) { animation-delay: 1.1s; }
.odoo-icon-card:nth-child(12) { animation-delay: 1.2s; }
.odoo-icon-card:nth-child(13) { animation-delay: 1.3s; }
.odoo-icon-card:nth-child(14) { animation-delay: 1.4s; }
.odoo-icon-card:nth-child(15) { animation-delay: 1.5s; }
.odoo-icon-card:nth-child(16) { animation-delay: 1.6s; }
.odoo-icon-card:nth-child(17) { animation-delay: 1.7s; }
.odoo-icon-card:nth-child(18) { animation-delay: 1.8s; }
.odoo-icon-card:nth-child(19) { animation-delay: 1.9s; }
.odoo-icon-card:nth-child(20) { animation-delay: 2.0s; }
.odoo-icon-card:nth-child(21) { animation-delay: 2.1s; }
.odoo-icon-card:nth-child(22) { animation-delay: 2.2s; }
.odoo-icon-card:nth-child(23) { animation-delay: 2.3s; }
.odoo-icon-card:nth-child(24) { animation-delay: 2.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.odoo-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.odoo-icon-card:hover::before {
    opacity: 1;
}

.odoo-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #6366f1;
}

.odoo-icon-card img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.odoo-icon-card:hover img {
    transform: scale(1.1);
}

.odoo-icon-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    position: relative;
    z-index: 1;
    margin: 0;
}

.odoo-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.odoo-toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
}

.odoo-toggle-switch {
    position: relative;
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.odoo-toggle-switch.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.odoo-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.odoo-toggle-switch.active .odoo-toggle-slider {
    transform: translateX(40px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.odoo-features-section {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
}

.odoo-features-section.show {
    max-height: 800px;
    opacity: 1;
    transform: translateY(0);
}

.odoo-features-content {
    text-align: center;
    padding: 2rem 0;
}

.odoo-animated-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.odoo-feature-image {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
    margin: 0 auto;
    display: block;
    animation: fadeInScale 1s ease-out 0.3s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .odoo-header h1 {
        font-size: 2.5rem;
    }

    .odoo-icons-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .odoo-icon-card {
        padding: 1rem;
    }

    .odoo-icon-card img {
        width: 48px;
        height: 48px;
    }

    .odoo-animated-heading {
        font-size: 2rem;
    }

    .odoo-feature-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .odoo-header h1 {
        font-size: 2rem;
    }

    .odoo-icons-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .odoo-animated-heading {
        font-size: 1.8rem;
    }

    .odoo-toggle-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* 3rd section starts from here */

.Odoo_third-section {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff, #d294ef);
  overflow: hidden;
}

.decorative-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #66459b, transparent);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  opacity: 0.5;
  animation: floating 10s infinite ease-in-out;
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

.Odoo_third-section-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3d3d3d;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}

.Odoo_third-section-para {
  font-size: 14px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

@media (max-width: 768px) {
  .Odoo_third-section {
    padding: 40px 20px;
  }

  .Odoo_third-section-heading {
    font-size: 1.5rem;
  }

  .Odoo_third-section-para {
    font-size: 14px;
  }

  .decorative-circle {
    width: 150px;
    height: 150px;
    top: -30px;
    left: -30px;
  }

  .decorative-circle {
    width : 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
  }
}

/* 3rd section ends here */

/* video section starts from here */

.video-section {
  text-align: center;
  padding: 50px 20px;
  max-width: 100%;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

.video-section_heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  animation: fadeIn 3s ease-in-out infinite;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  text-align: center;
}

.video-section_heading span.video-section_red-highlight {
  background-color: #ff6060;
  color: white;
  padding: 0 5px;
  border-radius: 5px;
}

.video-section_heading span.video-section_blue-underline {
  text-decoration: underline;
  text-decoration-color: #00c6c7;
}

/* Smooth Animation for Heading */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.video-section_video-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  padding: 10px;
  z-index: 2;
}

.video-section_video-container video {
  width: 100%;
  display: block;
  background-color: #f2f2f2;
}

.video-section_controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #f5f5f5;
  border-top: 2px solid #ddd;
}

.video-section_controls button {
  background: none;
  border: none;
  font-size: 20px;
  color: #6a4a4a;
  cursor: pointer;
}

.video-section_controls button:hover {
  color: #482929;
}

.video-section_controls input[type="range"] {
  width: 80%;
  cursor: pointer;
}

#playIcon {
  font-size: 14px;
}

/* Decorative Circle at Bottom Right */
.decorative-circle1 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #00c6c7, transparent);
  bottom: -50px;
  right: -50px;
  z-index: 1;
  border-radius: 50%;
  animation: pulse 6s infinite ease-in-out;
}

/* Smooth Pulsing Animation for Circle */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .video-section_heading {
    font-size: 1.5rem;
  }

  .video-section_video-container {
    width: 90%;
  }

  .decorative-circle1 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
  }
}


/* video section ends here */


/* Odoo optimized section starts here */

#canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.Optimized_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 50px auto;
  margin-top: -4rem;
  position: relative;
  z-index: 1;
}

.Optimized_section-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}

.Optimized_section-heading span {
  color: #007bff;
}

.Optimized_section-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

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

  .Optimized_section-image {
      max-width: 100%;
  }
}

/* Odoo optimized section ends here */

/* platform section starts here */

.platform_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 50px auto;
  margin-top: -5rem;

}

.platform_section-heading {
  font-size: 1.5rem;

  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}

.platform_section-heading span {
  color: #007bff;
}

.platform_section-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

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

  .platform_section-image {
    max-width: 100%;
  }
}

/* platform section ends here */

/* industries section starts here */

.industries-section {
  max-width: 1200px;
  margin: 50px auto;
}

.industries-section-heading {
  text-align: center;
  color: #451c5c;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: -4rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns for 2 rows */
  gap: 30px;
  justify-items: center;
}

.industry-card {
  background: transparent;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #000000;
  transition: transform 0.3s ease;
}

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

.icon {
  width: 40px;
  height: 40px;
}

.industry-name {
  font-size: 1.2rem;
  color: #333;
}

/* Icon colors */
.manufacturing { color: #FF4444; }
.retail { color: #FF8C00; }
.wholesale { color: #00CED1; }
.construction { color: #FF1493; }
.ecommerce { color: #0066CC; }
.zoo { color: #32CD32; }
.telecom { color: #8A2BE2; }

@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }

  .industries-section-heading {
    font-size: 22px;
  }
}

/* industries section ends here */

/* services section starts here */
.services-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  margin-bottom: 4rem;
}

.services-heading {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid #000000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}


/* Icon colors */
.demo .icon { color: #4666E5; }
.customization .icon { color: #FF4444; }
.implementation .icon { color: #8833FF; }
.integration .icon { color: #00D5D2; }
.migration .icon { color: #33CCFF; }
.consulting .icon { color: #22DD88; }
.support .icon { color: #FF66CC; }
.apps .icon { color: #FFBB33; }
.pricing .icon { color: #CC66FF; }
.developer .icon { color: #FF5555; }

/* services section ends here */


/* unleash odoo section */

.unleash_section {
  text-align: center;
  padding: 2rem;
  align-items: center;
  margin-top: 9rem;
  margin-bottom: 2rem;
}

.unleash_heading {
  font-family: 'Cursive', sans-serif;
  line-height: 6rem;
}

.unleash_text {
  font-weight: bolder;  /* Increased font weight */
  font-style: italic;
  font-size: 4rem;      /* Larger font size for more impact */
  color: #7d496e;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  font-family: 'Cursive', sans-serif;
  
}

.unleash_buttons {
  margin-top: 1.5rem;
}

/* .unleash_demo {
  background-color: #7d496e;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
} */

.unleash_start-now {
  background-color: #7d496e;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.unleash_start-now:hover {
  opacity: 0.9;
}



/* unleash odoo section */

/*  */
.unleash_section1 {
  text-align: center;
  padding: 2rem;
  align-items: center;
  margin-top: -4rem;
  margin-bottom: 2rem;
}

.unleash_heading1 {
  font-family: 'Cursive', sans-serif;
  line-height: 6rem;
}

.unleash_text1 {
  font-weight: bolder;  /* Increased font weight */
  font-style: italic;
  font-size: 4rem;      /* Larger font size for more impact */
  color: #7d496e;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  font-family: 'Cursive', sans-serif;
}

.unleash_start-now1 {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0078D4;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.unleash_start-now1:hover {
  background-color: #005ea6;
}

.unleash_buttons1 {
  margin-top: 1.5rem;
}

/* .unleash_demo {
  background-color: #7d496e;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
} */

.unleash_start-now1 {
  background-color: #7d496e;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.unleash_start-now1:hover {
  opacity: 0.9;
}

/*  */

/* pricing section starts here */


.Pricing_stats-section {
  padding: 2rem 1rem;
  width: 100%;
  background-color: #f5f5f5;
}

.Pricing_stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .Pricing_stats-container {
      grid-template-columns: 1fr;
  }
}

.Pricing_stat-item {
  text-align: center;
}

.Pricing_stat-number {
  color: #7d169f;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.Pricing_stat-text {
  color: #000000;
  font-size: 14px;
}

.Pricing_main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  border: 1px solid #000000;
  border-radius: 40px;
  background-color:transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 4rem;
margin-top: 4rem;
}

.Pricing_title {
  color: #7d169f;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.Pricing_description {
  text-align: center;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-size: 14px;
  margin-top: -3rem;
}

.Pricing_pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -2rem;
}

@media (max-width: 768px) {
  .Pricing_pricing-cards {
      grid-template-columns: 1fr;
  }
}

.Pricing_card {
  border: 1px solid #000000;
  border-radius: 0.5rem;
  padding: 2rem;
}

.Pricing_card.standard {
  background-color: #595e64;
}

.Pricing_card.custom {
  background-color: #581c87;
  color: rgb(0, 0, 0);
}

.Pricing_card-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}

.Pricing_price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.Pricing_price-amount {
  font-size: 2.5rem;
  font-weight: bold;
}

.Pricing_price-decimal {
  font-size: 1.25rem;
}

.Pricing_price-period {
  display: block;
  color: #000000;
  margin-top: 0.25rem;
}

.Pricing_custom .Pricing_price-period {
  color: #000000;
}

.Pricing_features {
  text-align: center;
  margin-bottom: 1.5rem;
}

.Pricing_feature {
  margin-bottom: 0.75rem;
  color: #000000;
}

.Pricing_custom .Pricing_feature {
  color: #000000;
}

.Pricing_button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: #581c87;
  color: white;
  text-align: center;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.Pricing_button:hover {
  background-color: #581c87;
}

/* pricing section ends here */

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

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