body {
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
}
.footer, .footer * {
  color: #222b45 !important;
  background: #ffb300 !important;
}
.footer-bottom {
  text-align: center;
}
.footer-logo-desc p {
  margin-bottom: 0.3em;
  margin-top: 0;
}
.footer-links ul a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.2s;
}
.footer-links ul a:hover {
  color: var(--accent);
}
/*
  Acadynix Landing Page Styles
  Brand colors are derived from the provided logo.
  Responsive, modern, and clean SaaS UI.
*/

:root {
  --primary: #1a237e; /* Deep blue from logo */
  --accent: #ffb300;  /* Gold/yellow from logo */
  --secondary: #f5f5f5;
  --text: #222;
  --white: #fff;
  --gray: #e0e0e0;
  --shadow: 0 2px 16px rgba(26,35,126,0.08);
}
.footer-links ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.footer-links ul li {
  margin-bottom: 0.5em;
  list-style: none !important;
}
  

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

/* HEADER */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.logo {
  height: 48px;
  width: auto;
}
.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--accent);
}
.btn {
  display: inline-block;
  padding: 0.7em 1.6em;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--primary);
}
.btn-secondary {
  background: var(--accent);
  color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.header-cta {
  margin-left: 2rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: background 0.2s;
}
/* Company-toggle (hamburger) custom style */
.company-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #faf8ff;
  box-shadow: 0 2px 12px rgba(26,35,126,0.08);
  border: none;
  margin-left: 1rem;
  position: relative;
  z-index: 10;
  transition: box-shadow 0.2s, background 0.2s;
}
.company-toggle span {
  background: #5f2fff;
  width: 28px;
  height: 4px;
  margin: 0 auto;
  border-radius: 2px;
}
.company-toggle:hover {
  background: #f3f0ff;
  box-shadow: 0 4px 20px rgba(95,47,255,0.13);
}
@media (max-width: 700px) {
  .company-toggle {
    width: 44px;
    height: 44px;
  }
  .company-toggle span {
    width: 22px;
    height: 3px;
  }
}
/* Company details right-side panel styles */
.company-details-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 340px;
  max-width: 90vw;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(26,35,126,0.13);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
}
.company-details-panel.open {
  transform: translateX(0);
}
.company-details-content {
  margin-top: 2rem;
  font-size: 1.08rem;
  color: var(--primary);
  line-height: 1.7;
  text-align: left;
}
.close-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 2;
  padding: 0;
  line-height: 1;
}
@media (max-width: 700px) {
  .company-details-panel {
    width: 98vw;
    padding: 1.2rem 0.7rem 1.2rem 1.2rem;
  }
}
.company-details-logo {
  height: 100px;
  margin-bottom: 1.2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.company-details-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.2rem;
  color: var(--primary);
}
.contact-block h3, .follow-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.2rem 0 0.7rem 0;
  color: var(--primary);
}
.contact-block {
  margin-bottom: 1.2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.05rem;
  margin-bottom: 0.7em;
  color: #222;
}
.contact-icon {
  background: #f3f0ff;
  color: #5f2fff;
  border-radius: 50%;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  margin-right: 0.5em;
}
.social-icons {
  display: flex;
  gap: 1.1em;
  margin-bottom: 1.5em;
}
.social-icon {
  color: #222;
  font-size: 1.4em;
  transition: color 0.2s;
}
.social-icon[aria-label="Facebook"] { color: #1877f3; }
.social-icon[aria-label="Twitter"] { color: #1da1f2; }
.social-icon[aria-label="Instagram"] { color: #e4405f; }
.social-icon[aria-label="LinkedIn"] { color: #0077b5; }
.social-icon[aria-label="YouTube"] { color: #ff0000; }
.social-icon[aria-label="WhatsApp"] { color: #25d366; }
.social-icon:hover {
  opacity: 0.8;
}
.company-actions {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  margin-top: 1.5em;
}
.company-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 2em;
  padding: 1em 0;
  width: 100%;
  background: #5f2fff;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(95,47,255,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.company-btn.whatsapp-btn {
  background: #5f2fff;
}
.company-btn.enquiry-btn {
  background: #5f2fff;
}
.company-btn:hover {
  background: #1a237e;
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,35,126,0.13);
}
/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, var(--primary) 60%, var(--accent) 100%);
  color: var(--white);
  padding: 4rem 0 2rem 0;
}
/* Carousel styles */
.hero-content {
  position: relative;
  min-height: 340px;
}
.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 340px;
}
.hero-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-banner.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.hero-text {
  flex: 1 1 350px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
}
.hero-logo {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
  padding: 0;
}
.hero-carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7em;
  z-index: 2;
}
.hero-carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.hero-carousel-indicators .indicator.active {
  background: var(--accent);
  border-color: var(--white);
}
.hero-banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 2.2rem 1.2rem;
  min-width: 260px;
  min-height: 180px;
  box-shadow: 0 2px 16px rgba(26,35,126,0.08);
}
.hero-banner-icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.hero-banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-align: center;
}
.hero-banner-desc {
  font-size: 1.08rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.2rem;
}
/* VALUE PROPOSITION STRIP */
.value-strip {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  padding: 0.7rem 0;
  box-shadow: var(--shadow);
}
.value-strip-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.value-strip-flex > div {
  padding: 0.2em 1em;
}
/* PROBLEM STATEMENT */
.problem {
  background: var(--white);
  padding: 3rem 0 2rem 0;
}
.problem-list {
  margin: 1.5rem 0 0 0;
  padding-left: 1.2rem;
  font-size: 1.1rem;
}
.problem-list li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
/* SOLUTION OVERVIEW */
.solution {
  background: var(--secondary);
  padding: 2rem 0;
}
.solution h2 {
  color: var(--primary);
}
/* AI CAPABILITIES */
.ai-capabilities {
  background: var(--white);
  padding: 3rem 0 2rem 0;
}
.ai-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.ai-card {
  background: var(--secondary);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  min-width: 180px;
  text-align: center;
  flex: 1 1 180px;
  max-width: 220px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ai-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 4px 24px rgba(26,35,126,0.15);
}
.ai-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  display: block;
}
/* MODULES GRID */
.modules {
  background: var(--secondary);
  padding: 3rem 0 2rem 0;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.module-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.module-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 4px 20px rgba(26,35,126,0.13);
}
.module-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
/* SYSTEM ARCHITECTURE */
.architecture {
  background: var(--white);
  padding: 3rem 0 2rem 0;
}
.architecture-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0 1rem 0;
}
.arch-layer {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow);
  min-width: 260px;
  text-align: center;
}
.arch-arrow {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.arch-desc {
  color: var(--text);
  text-align: center;
  margin-top: 1rem;
}
/* KEY BENEFITS */
.benefits {
  background: var(--secondary);
  padding: 2.5rem 0 2rem 0;
}
.benefits-list {
  margin: 1.5rem 0 0 0;
  padding-left: 1.2rem;
  font-size: 1.1rem;
}
.benefits-list li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
/* DEPLOYMENT OPTIONS */
.deployment {
  background: var(--white);
  padding: 2.5rem 0 2rem 0;
}
.deployment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.deploy-card {
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  padding: 1.2rem 2.2rem;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  min-width: 160px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.deploy-card:hover {
  background: var(--primary);
  color: var(--white);
}
/* CTA SECTION */
.cta {
  background: linear-gradient(120deg, var(--primary) 60%, var(--accent) 100%);
  color: var(--white);
  padding: 3rem 0 2rem 0;
}
.cta-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.cta-text {
  flex: 1 1 320px;
}
.cta-form {
  background: var(--white);
  color: var(--primary);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 260px;
  max-width: 340px;
}
.cta-form input {
  padding: 0.8em 1em;
  border-radius: 8px;
  border: 1px solid var(--gray);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.cta-form button {
  margin-top: 0.5rem;
}
/* FOOTER */
.footer {
  background: linear-gradient(120deg, #463c63 0%, #6a5663 100%);
  color: var(--primary);
  padding: 2.5rem 0 1rem 0;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 0;
  box-shadow: 0 4px 32px rgba(26,35,126,0.10);
  border-top: 1.5px solid rgba(255,255,255,0.18);
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}
.footer-logo-desc {
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-contact {
.footer-logo {
  height: 36px;
  max-width: 120px;
  margin-bottom: 1.2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
}
.footer-links {
  flex: 1 1 180px;
  min-width: 160px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .hero-content, .cta-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-logo-desc, .footer-contact, .footer-links {
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 100%;
    width: 100%;
  }
  .header-flex {
    flex-direction: row;
  }
}
@media (max-width: 700px) {
  .container {
    width: 98%;
  }
  .nav ul {
    display: none;
    flex-direction: column;
    background: var(--white);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    box-shadow: var(--shadow);
    z-index: 200;
  }
  .nav ul.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .header-cta {
    margin-left: 1rem;
  }
  .company-details-panel {
    width: 98vw;
    padding: 1.2rem 0.7rem 1.2rem 1.2rem;
  }
}
@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .ai-card, .module-card, .deploy-card {
    min-width: 120px;
    padding: 1rem 0.5rem;
  }
  .cta-form {
    padding: 1rem 0.5rem;
  }
}
/* Fade-in section animation */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
}
.fade-section.fade-in {
  opacity: 1 !important;
  transform: none !important;
}
/* Module icon bounce-in animation */
.module-card .module-icon {
  display: inline-block;
  will-change: transform;
}
.module-card.fade-in .module-icon {
  animation: icon-bounce-in 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes icon-bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(40px);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) translateY(-10px);
  }
  80% {
    transform: scale(0.95) translateY(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
