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

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}


/* Hero Banner */
.hero-banner {
  background: url('/assets/images/page-banner.png');
  background-repeat: no-repeat;
  background-position:  center center;
  background-size: cover;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.subpage-banner {
  position: relative;
  background: url('/assets/images/page-banner.png');
  background-repeat:  no-repeat;
  background-position:  center center;
  background-size: cover;
  height: 280px;
  color: white;
  margin-bottom: 2rem;
}

.subpage-banner .overlay {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.subpage-banner .content {
  position: relative;
  z-index: 2;
}

/* Blog Scroll */
.blog-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.blog-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.blog-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.blog-card {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
}

.blog-card h5 {
  font-weight: 600;
}

.blog-card .btn {
  border-color: #205375;
  color: #205375;
}

.blog-card .btn:hover {
  background-color: #205375;
  color: white;
}

/* Services Cards (Combined Option A + C) */
.service-card {
  position: relative;
  background-color: #ffffff;
  padding: 2rem;
  border-left: 5px solid #205375;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.service-card .icon-circle {
  font-size: 2rem;
  color: #205375;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

.service-card .btn {
  background-color: #205375;
  color: white;
  border: none;
}

.service-card .btn:hover {
  background-color: #163d58;
}

#services ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

#services li {
  margin-bottom: 0.75rem;
}

#services h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: #1a1a1a;
  font-weight: 600;
}


/* About Section */
#about h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}

#about p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #444;
}

.page-banner {
  min-height: 240px;
  background-color: #205375;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.section-title {
  margin-top: 2rem;
  margin-bottom: 1rem; 
}

.track-card {
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: #fff;
}

.icon-circle {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f4f8;
  margin-right: 1rem; font-size: 1.5rem;
}

.lead { font-size: 1.2rem; }

.bg-section { background: #f8fafc; }

@media (max-width: 767px) {
  .icon-circle { margin-bottom: 0.5rem; }
}

.contact-form {
  background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
            
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form .form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.5);
}

.contact-form .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.contact-form .btn-primary:hover {
    background-color: #004085;
    border-color: #004085;
}

.company-info {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.company-info h3 {
    margin-bottom: 20px;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #333;
}

.social-links a:hover {
    color: #0056b3;
}

.cta {
    background-color: #e9ecef;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    border-radius: 8px;
}

.cta h3 {
    color: #333;
    margin-bottom: 15px;
}