/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1554224155-1696413565d3?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 20px 50px;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 50px;
  font-weight: bold;
}

.hero h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #b0c4ff;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
}

.btn {
  background: #fff;
  color: #1a3db5;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #1a3db5;
  color: #fff;
}

/* Services Section */
.services {
  padding: 80px 50px;
  background: #f9f9f9;
  text-align: center;
}

.services-header h2 {
  font-size: 36px;
  color: #1a3db5;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 250px;
  max-width: 300px;
}

.card img {
  width: 60px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 22px;
  color: #1a3db5;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #444;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Banner */
.contact-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-banner {
  display: inline-block;
  padding: 12px 30px;
  background: #ff8c00;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.btn-banner:hover {
  background: #e67e00;
}

/* Our Cases Section */
.our-cases {
  padding: 80px 50px;
  background: #fff;
  text-align: center;
}

.cases-header h2 {
  font-size: 36px;
  color: #1a3db5;
  margin-bottom: 10px;
}

.cases-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.case-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-card h3 {
  font-size: 22px;
  color: #1a3db5;
  margin: 15px 0 10px;
}

.case-card p {
  font-size: 16px;
  color: #444;
  padding: 0 15px 20px;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 50px;
  background: #f9f9f9;
  text-align: center;
}

.testimonials-header h2 {
  font-size: 36px;
  color: #1a3db5;
  margin-bottom: 10px;
}

.testimonials-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card h4 {
  font-size: 18px;
  color: #1a3db5;
  font-weight: 600;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Page */
.contact-page {
  padding: 80px 50px;
  background: #fff;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 36px;
  color: #1a3db5;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 18px;
  color: #555;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #1a3db5;
}

.btn-submit {
  background: #1a3db5;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #15308d;
}

.contact-info {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 24px;
  color: #1a3db5;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services,
  .our-cases,
  .testimonials,
  .contact-page,
  .hero {
    padding: 60px 20px;
  }

  .hero {
    justify-content: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h3 {
    font-size: 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}
.card-link {
  text-decoration: none;
}
.topbar {
  background: #1a3db5;
  color: #fff;
  padding: 12px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  flex-wrap: wrap;
}
.topbar span {
    display: flex;
    align-items: center;
}

/* Optional: Add a separator for a cleaner look on desktop */
.topbar span:not(:last-child)::after {
  content: '|';
  margin-left: 30px;
  color: rgba(255, 255, 255, 0.5);
}
