/* 
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  color: #111;
}
 */
:root {
  --primary: #0c88c0;
  --secondary: #444; /* your grey accent */
  --bg-dark: #052538;
  --text: #222;
  --spacing: clamp(1rem, 2vw, 2rem);
}

/* Responsive */
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* General Reset */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

/* Header */
.site-header {
  background: var(--bg-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing) 0;
}

.logo {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-decoration: none;
}
.logo-blue { color: var(--primary); }
.logo-white { color: #fff; }

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.nav a:hover { color: var(--primary); }

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background: #0a6f9d; }

.btn-secondary {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-secondary:hover { background: rgba(12,136,192,0.1); }

/* Mobile Menu */
.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  display: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
  padding: var(--spacing);
  gap: 1rem;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
}
.hidden { display: none; }

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0c88c0 0%, #052538 100%);
  color: #fff;
  padding: 4rem 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.hero-text .subtitle {
  font-size: 1rem;
  opacity: 0.8;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
}
.hero-text .highlight { color: var(--primary); }
.hero-text .lead {
  margin-bottom: 1rem;
}
.benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.benefits li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 0.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hero-image img {
  width: 100%;
  border-radius: 50%;
}













.services {
  background: #f3f5f7; /* light grey background */
  padding: 4rem 0;
}

.section-title {
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: #111;
}

.section-title .highlight {
  color: var(--primary); /* your blue #0c88c0 */
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #555;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: #333;
}

.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}




.about {
  background: #0d1b2a; /* dark background */
  color: #fff;
  padding: 4rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text .subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.about-text h2 {
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.about-text .highlight {
  color: var(--primary);
}

.about-text .intro {
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-image img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--primary);
}

/* Stats Section */
.stats-inner {
  background: var(--primary);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.stat-number {
  font-family: "Russo One", sans-serif;
  font-size: 2rem;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }
  .about-image img {
    max-width: 300px;
    margin: 0 auto;
  }
}








.pricing {
  padding: 4rem 0;
  background: #f3f5f7;
}

.section-title {
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: #111;
}
.section-title .highlight {
  color: var(--primary);
}
.note {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Table */
.table-wrapper {
  overflow-x: auto; /* responsive scroll */
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  background: #fff;
}

.pricing-table thead {
  background: var(--primary);
  color: #fff;
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
  background: #fafafa;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.price .old,
.old {
  text-decoration: line-through;
  color: #888;
  margin-right: 0.5rem;
}

.price .new,
.new {
  font-weight: 700;
  color: var(--primary);
}

.pricing-table td {
  font-size: 0.95rem;
}

.pricing-table td:contains("✔") {
  color: var(--primary);
  font-weight: bold;
}

/* Maintenance */
.maintenance {
  margin: 2.5rem 0;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* CTA */
.pricing-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}









.projects {
  background: #0d1b2a;
  color: #fff;
  padding: 4rem 0;
}

.projects .section-title {
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  color: #fff;
}

.projects .highlight {
  color: var(--primary);
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Card */
.project-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
}

.project-overlay .tag {
  display: inline-block;
  background: rgba(12, 136, 192, 0.85);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.project-overlay h3 {
  font-family: "Montserrat", sans-serif;
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
}

.project-overlay p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.project-link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.project-link:hover {
  background: #086699;
}





.performance {
  padding: 5rem 0;
  background: #f9fafa;
  text-align: center;
}

.performance .section-title {
  font-family: "Russo One", sans-serif;
  margin-bottom: 0.5rem;
}

.performance .section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.score-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.score-card {
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.score-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
}

.score-label {
  font-size: 0.9rem;
  margin-top: 0.3rem;
  color: #333;
}

.performance-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.performance-info p {
  max-width: 450px;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .performance-info {
    flex-direction: column;
    text-align: center;
  }
  .performance-info p {
    text-align: center;
  }
}








.faq {
  background: #0d1b2a;
  color: #fff;
  padding: 4rem 0;
}

.faq .section-title {
  font-family: "Russo One", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  color: #fff;
}

.faq .highlight {
  color: var(--primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* Accordion styling */
.faq-list details {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  transition: transform 0.3s ease;
}

.faq-list details[open] summary i {
  transform: rotate(180deg);
}

.faq-list p {
  margin-top: 0.75rem;
  line-height: 1.6;
  color: #ddd;
}







.contact {
  padding: 5rem 0;
  background: #f9fafa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info h2 {
  margin: 0.5rem 0 1.5rem;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-person img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  object-fit: cover;
}

.contact-person a {
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(12, 136, 192, 0.2);
}

.form-label {
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin: 1rem 0;
}

.checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}








.footer {
  background: #1c2229;
  color: #eee;
  padding: 3rem 0 1rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  font-family: "Russo One", sans-serif;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.1rem;
  position: relative;
}

.footer h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: var(--primary);
  margin-top: 0.4rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #ccc;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}
