@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&family=Roboto+Slab:wght@400;600&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #1a3a5c;
  --primary-light: #2d5a87;
  --accent: #6ec1e4;
  --accent-green: #61ce70;
  --text: #54595f;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --bg-light: #f4f7fa;
  --shadow: 0 4px 24px rgba(26, 58, 92, 0.12);
  --radius: 8px;
  --max-width: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--primary);
  line-height: 1.3;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


.container1 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 58px 77px;
  background-color:white;
}

/* Header */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.main-nav a {
  color: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary) !important;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: var(--accent-green);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white) !important;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

.header-cta { flex-shrink: 0; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #3a7ca5 100%);
  color: var(--white);
  padding: 100px 24px;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 800px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Sections */
section { padding: 80px 0; }

section:nth-child(even) { background: #0062c3; }

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-content p { margin-bottom: 16px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Client logos */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
}

.logo-grid img {
  margin: 0 auto;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.2s;
}

.logo-grid img:hover { filter: none; }

/* Services cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.service-card:hover { transform: translateY(-4px); }

.service-card img { width: 100%; height: 200px; object-fit: cover; }

.service-card-body { padding: 24px; }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card img { width: 100%; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.2s;
  cursor: pointer;
}

.gallery-grid img:hover { transform: scale(1.03); }

/* Contact */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.contact-section h2 { color: var(--white); }

.contact-section .section-title::after { background: var(--accent-green); }

.contact-email {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-top: 16px;
}

.contact-email a { color: var(--accent); }
.contact-email a:hover { color: var(--accent-green); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius);
}

.contact-card strong {
  display: block;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Josefin Sans', sans-serif;
}

/* Page header (inner pages) */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
}

.page-hero h1 { color: var(--white); font-size: 2.4rem; }

/* Content blocks */
.content-block { margin-bottom: 40px; }

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.content-block h3 {
  font-size: 1.15rem;
  margin: 20px 0 10px;
  color: var(--primary-light);
}

.content-block ul {
  margin: 12px 0 12px 24px;
}

.content-block li { margin-bottom: 8px; }

.service-detail {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.service-detail h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* Footer */
.site-footer {
  background: #0f2538;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
}

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

.footer-grid h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; }

.footer-grid li { margin-bottom: 8px; }

.footer-grid a { color: rgba(255, 255, 255, 0.7); }
.footer-grid a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 16px;
  }

  .main-nav.open { display: block; }

  .main-nav ul { flex-direction: column; }

  .header-cta { display: none; }

  .two-col { grid-template-columns: 1fr; }

  section { padding: 56px 0; }

  .hero { padding: 72px 24px; }
}
