* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.site-wrapper {
  width: clamp(1000px, 100%, 2820px);
  margin: 3rem auto 0 auto;
}

div, p, h1, h2, h3, h4, h5 {
  cursor: default;
}

:root {
    --primary-blue: #000066;
    --primary-blue-hover: #1d4ed8;
    --dark-blue: #1e40af;
    --light-gray: #f8fafc;
    --text-gray: #64748b;
    --white: #ffffff;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    max-width: 250px;
    max-height: 80px;
    margin-right: 5px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.contact-btn {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.section {
    height: clamp(700px, 100vh, 1200px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    margin: 0 auto;
    overflow: hidden;
}

.section-mini {
    height: clamp(700px, 65vh, 780px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.hero {
    background: linear-gradient(135deg, #0A0C18 0%, #0A0C18 100%);
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../src/images/business-person-futuristic-business-environment.jpg');
    background-size: cover;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: slideInUp 1s ease 0.2s both;
}

img.logo-hero {
  display: block;
  margin: 0 auto;
  max-width: 350px;
  max-height: 350px;
  animation: floatUp 3s ease-in-out infinite;
}

.ctato-btn {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: slideInUp 1s ease 0.4s both;
}

.ctato-btn:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cards-container {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.card-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.card-image img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    transition: all 0.3s ease;
    object-fit: cover;
}

.card:hover .card-image img {
    transform: scale(1.1);
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.cards-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.cards-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cards-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.card-tech{
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px #0693BC,
                0 0 40px rgba(55, 195, 208, 0.7);
    transform: scale(1.03);
}

.card-tech:hover::before {
    transform: scaleX(1);
}

.card-tech:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-vision {
    background: var(--light-gray);
}

.mission-vision-icons {
    max-width: 80px;
    max-height: 80px;
}

.solutions {
    background: white;
}

.section-label {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-sublabel {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: bold;
    margin-bottom: 3rem;
}

.section-sublabel-strong {
    font-size: 1.2rem;
    color: black;
    font-weight: bold;
    margin-bottom: 3rem;
}

.how-it-works {
    background: url('../src/images/programmer-data-center-using-ai-tech-tablet-close-up.jpg');
    background-size: cover;
    /*background: var(--light-gray);*/
}

.how-it-works .card {
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.integrations {
    background: white;
}

.integrations-text {
    font-size: 1.3rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

.erp-card {
    background: white;
    max-width: 300px;
    max-height: 200px;
    border: 2px solid #e2e8f0;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-gray);
}

.erp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.support {
    background: url('../src/images/business-person-futuristic-business-environment-alt.jpg');
    background-size: cover;
    /*background: var(--light-gray);*/
}

.support-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.8;
}

.support-label {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: white;
}

.support-content {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 150px;
  margin-right: 550px;
  padding: 20px;
  border-radius: 8px;
}

.partnerships {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.partnership-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-gray);
}

.partnership-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.partnership-card img {
  max-width: 125%;
  max-height: 155%;
  border-radius: 12px;
  object-fit: contain;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    margin: 2rem 0;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(0) invert(1) drop-shadow(0 0 5px #0693BC);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}   

.footer-bottom a:hover {
    color: white;
}

.toast {
  position: fixed;
  top: 125px;
  right: 20px;
  display: flex;
  align-items: center;
  background: white;
  color: var(--primary-blue);
  padding: 25px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-family: sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-gif {
  width: 40px;
  height: 40px;
  margin-right: 25px;
}

.toast-text {
  text-align: center;
  line-height: 1.3;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 
      0 0 20px #0693BC,
      0 0 40px rgba(55, 195, 208, 0.7);
  }
  50% {
    box-shadow: 
      0 0 30px #0693BC,
      0 0 60px rgba(55, 195, 208, 0.9);
  }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-label {
        font-size: 2rem;
    }

    .cards-2,
    .cards-3,
    .cards-4 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 1.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

html {
    scroll-behavior: smooth;
}