/* Modernized styling based on Hostinger AI output */
:root{
    --bg:#0b1220;
    --card-bg:#ffffff;
    --muted:#6b7280;
    --text:#0f172a;
    --primary:#06b6d4; /* modernized teal */
    --accent:#00a8a0;
    --max-width:1140px;
    --radius:12px;
    --gap:24px;
    --wrap-padding:20px;
    --hero-gradient: linear-gradient(135deg,#061424 0%, #0f172a 100%);
}
*{box-sizing:border-box}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body{font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial; margin:0; color:var(--text); background:#f6f9fb; -webkit-font-smoothing:antialiased; line-height:1.5}
.wrap{max-width:var(--max-width); margin:0 auto; padding:0 var(--wrap-padding)}
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6eef2;
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 32px;
}
.logo img {
  height: 64px;
  max-width: 240px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
  background: none;
  border: none;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  height: 4px;
  width: 28px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
  display: block;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}
.nav .cta {
  background: var(--primary);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 240px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px 24px;
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
    z-index: 99;
    gap: 18px;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav a {
    margin: 0 0 18px 0;
    font-size: 1.1rem;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .logo img {
    max-width: 140px;
    height: 40px;
  }
  .header-inner {
    gap: 12px;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: var(--hero-gradient);
  color: #fff;
  padding: 72px 0;
}
.hero-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.hero-copy {
  flex: 1;
  min-width: 280px;
}
.eyebrow {
  font-weight: 600;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.hero-copy h1 {
  font-family: 'Poppins',sans-serif;
  font-size: 40px;
  margin: 0 0 8px;
  line-height: 1.05;
}
.accent {
  color: var(--primary);
}
.lead {
  color: rgba(255,255,255,0.95);
  font-size: 17px;
  max-width: 680px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
  max-width: 680px;
  margin-top: 24px;
  width: 100%;
}
.hero-ctas .btn {
  display: inline-block;
  padding: 0.5em 1.5em;
  border-radius: 2em;
  font-weight: 600;
  font-size: 1em;
  border: 2px solid transparent;
  background: transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  min-width: 120px;
  max-width: 100%;
  line-height: 1.2;
  box-sizing: border-box;
}
.hero-ctas .btn.primary {
  border-color: var(--primary);
  color: var(--primary);
}
.hero-ctas .btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-ctas .btn.primary:hover {
  background: rgba(6,182,212,0.13);
  color: #fff;
}
.hero-ctas .btn.ghost:hover {
  background: rgba(0,168,160,0.13);
  color: #fff;
}
.hero-ctas .btn:last-child {
  margin-right: 0;
}
@media (max-width: 900px) {
  .hero-ctas {
    max-width: 95vw;
  }
}
@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    gap: 12px 0;
    align-items: stretch;
    max-width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
}

/* --- HERO VISUAL FIX: Ensure image always displays and is responsive --- */
.hero-visual {
  flex: 1;
  min-width: 0;
  max-width: 900px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 100px; /* Debug: ensure space is reserved */
  background: rgba(0,255,0,0.05); /* Debug: light green background for visibility, remove later */
  margin-left: 40px;
}
.hero-visual img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(2,6,23,0.6);
  opacity: 1 !important;
  filter: none !important;
}
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-visual {
    margin-left: 0;
    max-width: 100vw;
    width: 100%;
    justify-content: center;
  }
  .hero-visual img {
    max-width: 95vw;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .hero-visual img {
    max-width: 100vw;
    width: 100%;
  }
}

/* --- ABOUT SECTION --- */
.section {
  padding: 64px 0;
}
.section.light {
  background: #fff;
}
.section .section-title {
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 700;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section .section-lead {
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 24px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.about-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: #fff;
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.about-card .icon {
  font-size: 34px;
  margin-bottom: 12px;
}
.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.about-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .about-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* --- SERVICES SECTION --- */
.service-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.service-card {
  flex: 1 1 300px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.service-card .icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* --- INDUSTRIES SECTION --- */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  justify-items: center;
}
.industry-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  width: 100%;
  max-width: 320px;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.industry-card .icon {
  font-size: 34px;
  margin-bottom: 10px;
}
.industry-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .industry-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .industry-cards {
    grid-template-columns: 1fr;
  }
}

/* --- CONTACT SECTION --- */
.contact-grid.revamped {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .contact-grid.revamped {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}
.contact-info-card {
  background: linear-gradient(90deg, rgb(56, 82, 216), rgb(62, 63, 197));
  color: #fff;
  border-radius: 14px;
  padding: 28px 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}
.contact-info-card .info-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
  max-width: 420px;
}
.info-email-block {
  display: flex;
  align-items: center;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 0 0 0 !important;
}
.info-email-block:hover {
  background: none !important;
}
.email-icon-container {
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.email-icon {
  width: 42px;
  height: 42px;
}
.email-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.email-details .info-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.9;
  margin-bottom: 0px;
}
.email-details .email-address a {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
}
.email-details .email-address a:hover {
  color: rgb(67,146,170);
  text-decoration: none;
}
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 14px 0;
}
.info-response {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 22px;
}
@media (max-width: 900px) {
  .contact-info-card {
    text-align: center;
    align-items: center;
  }
  .info-email-block {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .email-icon-container {
    margin-right: 0;
  }
}
.contact-form {
  background: var(--card-bg);
  padding: 36px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}
.contact-form .form-label {
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #e6eef2;
  font-size: 15px;
  color: var(--text);
  background: #fafbfc;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b8bfc7;
  font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgb(56,82,216);
  box-shadow: 0 0 0 3px rgba(56,82,216,0.15);
}
.btn-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 0;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, rgb(56, 82, 216), rgb(62, 63, 197));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(56,82,216,0.3);
  transition: background 0.25s;
}
.btn-send:hover {
  background: linear-gradient(90deg, rgb(62,63,197), rgb(56,82,216));
}
.send-icon img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}
.btn-send:hover .send-icon img {
  transform: translateX(3px) rotate(-8deg);
}

/* --- RabbixAI Footer: Final pixel-perfect styles --- */
.site-footer {
  background: #11172A;
  color: #A9B3C6;
  font-family: Arial, Helvetica, sans-serif;
  border-top: none;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 32px 0 32px;
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand-col .brand {
  color: #53DED2;
  font-size: 1.75rem;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
}
.footer-tagline {
  color: #A9B3C6;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #A9B3C6;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: normal;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  padding-bottom: 2px;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-nav a:hover {
  color: #53DED2;
}
.footer-social {
  display: flex;
  gap: 24px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #212A3E;
  border-radius: 16px;
  transition: background 0.2s;
}
.social-link img {
  width: 32px;
  height: 32px;
  filter: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.social-link:hover {
  background: #53DED2;
}
.footer-separator {
  border: none;
  background: #212A3E;
  height: 1px;
  margin: 32px 0 0 0;
  max-width: 1400px;
  width: 100%;
  display: block;
  opacity: 1;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px 24px 32px;
  color: #A9B3C6;
  font-size: 0.95rem;
  font-weight: normal;
  letter-spacing: 0.01em;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-powered a {
  color: #53DED2;
  font-weight: bold;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}
.footer-powered a:hover {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 12px 0 12px;
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: left;
    gap: 8px;
    padding: 18px 12px 18px 12px;
    max-width: 100%;
    font-size: 0.8rem;
  }
  .footer-title {
    font-size: 1rem;
  }
  .footer-brand-col .brand {
    font-size: 1.25rem;
  }
  .footer-tagline {
    font-size: 0.8rem;
  }
  .footer-nav a {
    font-size: 0.8rem;
  }
  .footer-bottom {
    font-size: 1rem;
  }
}

/* responsive */
@media(max-width:900px){
    .hero-inner{flex-direction:column; text-align:center}
    .hero-visual img{max-width:360px}
    .contact-grid{grid-template-columns:1fr; margin-top:20px}
    .footer-inner{flex-direction:column; text-align:center}
}

.consent-label {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 0.5em;
  font-size: 15px;
  margin: 10px 0 18px 0;
  text-align: left;
  justify-content: flex-start;
}
.consent-label input[type="checkbox"] {
  margin: 0 8px 0 0;
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.contact-form .g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 16px 0 0 0;
}
