/* Import Quattrocento Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:wght@400;700&display=swap');

/* Base font stack */
body {
  margin: 0;
  font-family: 'Quattrocento Sans', Segoe UI, Tahoma, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}


h1, h2, h3 {margin: 0 0 1rem;}
section {padding: 4rem 2rem;}
h2 {font-size: 2rem; margin-bottom: 1rem; color: #0a2a3d;}
.section-container {
  display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: start;
  max-width: 1200px; margin: auto;
}
header {
  position: sticky; top: 0; background: #fff; padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); z-index: 10;
}
header h1 {color: #0a2a3d; font-weight: 700;}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-left {flex: 1;}

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

.nav-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0a2a3d;
}

/* CTA button */
.nav-right {margin-left: 2rem;}

.nav-cta {
  background: #ff0082;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #cc006a;
}


.hero {
  background: linear-gradient(135deg, #0a2a3d, #17435f); 
  color: #fff; padding: 6rem 2rem; text-align: center;
}
.hero h2 {font-size: 3rem; margin-bottom: 1rem; color: #fff;}
.hero p {max-width: 700px; margin: 0 auto 2rem;}

.solution-industry {
  background: #fff; 
  color: #000; padding: 6rem 2rem; text-align: center;
}
.solution-industry h2 {font-size: 3rem; margin-bottom: 1rem; color: #fff;}
.solution-industry p {max-width: 700px; margin: 0 auto 21rem;}

/* Buttons */
.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  background: #ff0082;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #cc006a;
  color: #fff;
}

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

/* Card */
.card {
  background: #f9f9f9; padding: 2rem 1rem; border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {transform: translateY(-6px); box-shadow: 0 6px 12px rgba(0,0,0,0.15);}
.card h3 {color: #0a2a3d; margin-bottom: 0.5rem;}

/* Industries */
.industries-section {
  background: #eae4dc;
  padding: 4rem 2rem;
  text-align: center;

}
.industries-section h2 {font-size: 2rem; margin-bottom: 0.5rem; color: #0a2a3d;}
.industries-section p {color: #0a2a3d; margin-bottom: 2.5rem;}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: auto;
}
.industries-tile {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.industries-tile:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.industries-tile h4 {color: #333; font-size: 1.1rem; margin: 0;}
.industries-all {
  background: #ff0082;
  color: #fff;
  text-decoration: none;
}
.industries-all h4 {color: #fff; margin: 0;}

/* CTA */
.cta {
  background: linear-gradient(135deg, #ff0082, #17435f);
  color: #fff; padding: 5rem 2rem; text-align: center;
}
.cta h2 {font-size: 2.5rem; margin-bottom: 1rem; color: #fff;}

/* Insights */
.insights-header {text-align: center; margin-bottom: 2rem; max-width: 700px; height: 180px;margin-left: auto; margin-right: auto;}
.insights-slider {position: relative; overflow: hidden; max-width: 700px; height: 100%; margin: auto;}
.insight {
  display: none;
  background: #fff;
  padding: 0rem 1rem;
  border-radius: 12px;
  text-align: center;
  height: 130px;
}
.insight.active {display: block;}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.prev-btn, .next-btn {padding: 0.5rem 1rem; font-size: 0.9rem;}

/* Why tiles */
.why-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: #0a2a3d;
  color: #fff;
  padding: 3rem 2rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
.footer-column h3 {font-size: 1.1rem; margin-bottom: 1rem; color: #fff;}
.footer-column ul {list-style: none; padding: 0;}
.footer-column ul li {margin-bottom: 0.6rem;}
.footer-column a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-column a:hover {color: #00bfff;}

/* Footer form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
}
.footer-form button {
  background: #ff0082;
  color: #fff;
  border: none;
  padding: 0.7rem;
  border-radius: 5px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-form button:hover {background: #cc006a;}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

@media (max-width: 1100px) {
  .footer-container {grid-template-columns: repeat(3, 1fr);}
}
@media (max-width: 700px) {
  .footer-container {grid-template-columns: 1fr;}
  .footer-column {margin-bottom: 1.5rem;}
}

 .values { padding: 28px 0; background: #fff; }
  .values .container {
    max-width: 100%;
    margin: 0 auto;
    padding-right: 40px;
    display: grid;
    grid-template-columns: repeat(4, 2fr);
    gap: 24px;
    text-align: center;
  }
  .values h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
  }
  .values p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    column-gap: 20px;
  }
  @media (max-width: 768px) {
    .values .container { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .values .container { grid-template-columns: 1fr; }
  }

  /* General section container */
@media (max-width: 900px) {
  .section-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Navbar responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 1rem 0;
    display: none; /* hide by default, toggle with JS if needed */
  }
  .nav-links.active {display: flex;}
  .nav-right {margin-left: 0; margin-top: 1rem;}
}

/* Hero text scaling */
@media (max-width: 768px) {
  .hero {padding: 4rem 1rem;}
  .hero h2 {font-size: 2rem;}
  .hero p {font-size: 1rem;}
}

/* Industries grid */
@media (max-width: 900px) {
  .industries-grid {grid-template-columns: 1fr 1fr;}
}
@media (max-width: 600px) {
  .industries-grid {grid-template-columns: 1fr;}
}

/* Why tiles */
@media (max-width: 900px) {
  .why-tiles {grid-template-columns: 1fr 1fr;}
}
@media (max-width: 600px) {
  .why-tiles {grid-template-columns: 1fr;}
}

/* Footer tweaks (you already have some) */
@media (max-width: 500px) {
  .site-footer {padding: 2rem 1rem;}
}
/* Full-screen centering */
.contact-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #fff;
  padding: 2rem;
}

.contact-split {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: start; /* keep tops aligned */
  gap: 0.1rem;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 80vh;
}


/* Left side with brand color */
.contact-message {
  background: #0a2a3d;
  color: #fff;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
  display: block;
}


.contact-message h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-message p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

/* Right side form card */
.contact-form-box {
  background: #f9f9f9;
  padding: 3rem 2rem;
}

.contact-form-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff0082;
}

/* Button */
.btn-accent {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background: #ff0082;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-accent:hover {
  background: #cc006a;
}



/* Responsive */
@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-message {
    text-align: center;
    align-items: center;
  }
  .brand-logo {
    margin-left: auto;
    margin-right: auto;
  }
}
