/* Omniway Modern Redesign Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)" opacity="0.6"><animate attributeName="cx" values="200;800;200" dur="10s" repeatCount="indefinite"/></circle><circle cx="800" cy="400" r="150" fill="url(%23a)" opacity="0.4"><animate attributeName="cy" values="400;100;400" dur="12s" repeatCount="indefinite"/></circle><circle cx="400" cy="700" r="80" fill="url(%23a)" opacity="0.7"><animate attributeName="r" values="80;120;80" dur="8s" repeatCount="indefinite"/></circle></svg>');
    opacity: 0.5;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.hero-content {
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
}

.services {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.stats {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* END Omniway Modern Redesign Styles */
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.slogan {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(30,64,175,0.08);
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #2563eb;
  color: #fff;
}
.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 18px;
}
.cta-btn.secondary {
  background: #2563eb22;
  color: #fff;
  border: 1.5px solid #fff;
}
.cta-btn.secondary:hover {
  background: #fff;
  color: #2563eb;
}

main {
  margin-top: 0;
}

section {
  padding: 60px 0 40px 0;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2563eb;
}

.about p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #334155;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30,64,175,0.07);
  padding: 32px 24px;
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 200px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(37,99,235,0.13);
}
.icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.service h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e293b;
}
.service p {
  font-size: 0.98rem;
  color: #475569;
}

.contact-info {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #334155;
}
.contact-info a {
  color: #2563eb;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

footer {
  background: #1e293b;
  color: #fff;
  text-align: center;
  padding: 24px 0;
  font-size: 1rem;
  margin-top: 40px;
}
footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
}
footer .footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer .footer-contact {
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 0.98rem;
}

/* Testimonials */
.testimonials {
  background: #f1f5f9;
  padding: 60px 0 40px 0;
}
.testimonials-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30,64,175,0.07);
  padding: 28px 22px;
  max-width: 320px;
  min-width: 220px;
  font-size: 1.05rem;
  color: #334155;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial span {
  font-size: 0.98rem;
  color: #2563eb;
  font-weight: 600;
}

/* Partners */
.partners {
  background: #fff;
  padding: 40px 0 30px 0;
  text-align: center;
}
.partners-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.partners-logos img {
  height: 40px;
  width: 120px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.partners-logos img:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }
  .service {
    max-width: 100%;
    width: 100%;
  }
  .testimonials-list, .partners-logos {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  header.hero {
    padding: 48px 0 32px 0;
  }
  section {
    padding: 32px 0 24px 0;
  }
  h2 {
    font-size: 1.4rem;
  }
  .logo {
    font-size: 2rem;
  }
  .slogan {
    font-size: 1.1rem;
  }
  .hero-desc {
    font-size: 0.98rem;
  }
  .cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .testimonials-list, .partners-logos {
    gap: 18px;
  }
} 

/* Snackbar styles */
#snackbar {
  visibility: hidden;
  min-width: 280px;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px 24px;
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 1000;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
#snackbar.show {
  visibility: visible;
  opacity: 1;
} 