
body {
  font-family: 'Raleway', sans-serif;
  padding-top: 80px;
  color: #333;
}

.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: darken;
}

h1, h2, h5 {
  color: #1b55ab;
}

.navbar-brand {
  font-weight: bold;
  color: #1b55ab;
}

.navbar-light .navbar-nav .nav-link {
  color: #0d2d3e !important;
  font-weight: 400;
  padding: 39px 19px;
  display: block;
  font-size: 16px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #0d2d3e !important;
}

.btn-primary {
  background-color: #1c56a3 !important;
  border-color: white !important;
}

.btn-primary:hover {
  background-color: #0d2d3e;
}

footer {
  background-color: #1c56a3;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
  .navbar-nav .nav-link {
    padding: 10px !important;
  }
}

.industries-section {
  padding: 100px 20px;
  text-align: center;
}

.industries-section h2 {
  color: #555;
  font-weight: 500;
  font-size: 20px;
}

.industries-section h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background-color: white;
  border-radius: 12px;
  /* padding: 24px; */
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card img {
  margin-bottom: 16px;
  max-height: 200px;
}
.card .card-text{

  padding: 20px;
}
.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.card p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}
.contact-section {
  background-color: #1c56a3; /* bright blue */
  color: white;
  padding: 60px 80px;
  
}
.contact-section .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-text h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.5;
  margin: 4px 0;
}

.contact-button a {
  background-color: #f3f3f3;
  color: #333;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-button a:hover {
  background-color: #e0e0e0;
  text-decoration: none;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .contact-button {
    margin-top: 10px;
  }
  .page-section img{
    max-width: 100%;
  }
}
.page-section h2 , .page-section h5{
  font-weight: 600;
}
.page-section h5{
  font-size: 1.6rem;
}
.page-section img{
  max-height: 280px;
}
.page-header{
  background: linear-gradient(#2357a182,#ffffff, #f2f2f2)
}
@media (max-width: 768px) {
.contact-section .container {
  flex-direction: column;
}
}