/* === Reset & Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

a {
  color: #005a8d;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
}

/* === Header === */
header {
  background: #1a1a1a;
  color: #fff;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header img {
    height: 60px;
}

nav a {
  margin-left: 20px;
  color: #fff;
  text-transform: uppercase;
  }

@media (max-width: 768px) {
  nav {
    margin-top: 10px;
  }

  nav a {
    display: inline-block;
    margin: 10px 10px 0 0;
  }
}

/* === Hero Section === */
.hero {
  background: #660000;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: #e6b800;
}

/* === Services Section === */
.services {
  background: #fff;
  padding: 60px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* === Projects Section === */
.projects {
  background: #f7f7f7;
  padding: 60px 0;
  text-align: center;
}

.projects h2 {
  text-align: center;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: fill;
  display: block;
}

.project-card h3 {
  padding: 15px 15px 5px;
  font-size: 1.2rem;
}

.project-card p {
  padding: 0 15px 15px;
  font-size: 0.95rem;
}

.project-card:hover {
  transform: translateY(-5px);
}
.projects-more {
background-color: #a8a8a8;}

/* === Contact Section === */
.contact {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact p {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* === Footer === */
footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
footer a {
  color: white;
}
.chubbtech {
    color:#fe5d86;
}


/* Trusted By section */
.trustedby {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

.trusted h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.logo-grid {
    margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.logo-grid img {
  max-height: 60px;
  max-width: 150px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0%);
}
