/* ----------------------------------------------------
   GLOBAL BASE STYLES
---------------------------------------------------- */
body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #f8fbff;
  color: #333333;
  line-height: 1.7;
}

/* Reset link look */
a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  color: #004c99;
  text-decoration: none;
}

/* ----------------------------------------------------
   HEADER + NAVBAR
---------------------------------------------------- */
.navbar {
  background-color: #004c99 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar .navbar-brand {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.4rem;
}

.navbar-nav .nav-link {
  color: #e6e6e6 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #00a3ff !important;
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero-section {
  background: linear-gradient(to right, #e8f4ff, #ffffff);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-section h1 {
  color: #004c99;
}
.hero-section p.lead {
  color: #333;
  font-size: 1.1rem;
}
.hero-section ul li {
  margin-bottom: 0.5rem;
}

/* ----------------------------------------------------
   BUTTONS
---------------------------------------------------- */
.btn-primary {
  background-color: #0066cc;
  border-color: #0066cc;
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #004c99;
  border-color: #004c99;
}

.btn-outline-primary {
  border-color: #0066cc;
  color: #0066cc;
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
}
.btn-outline-primary:hover {
  background-color: #0066cc;
  color: #fff;
}

/* ----------------------------------------------------
   CARDS (for blog, services, etc.)
---------------------------------------------------- */
.card {
  border: 1px solid #e3e9ef;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.card-title {
  color: #004c99;
}
.card-text {
  color: #555;
}

.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* ----------------------------------------------------
   SECTION HEADINGS
---------------------------------------------------- */
.section-title {
  color: #004c99;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid #0066cc;
  padding-left: 10px;
  margin-bottom: 1.5rem;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
  background-color: #004c99;
  color: #ffffff;
  padding: 3rem 0;
}
footer a {
  color: #00a3ff;
}
footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #d1e0ff;
}

/* ----------------------------------------------------
   ABOUT US PAGE
---------------------------------------------------- */
/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border-radius: 0 0 50px 50px;
}

/* ----------------------------------------------------
   SERVICES PAGE
---------------------------------------------------- */
/* Hero Section */
.service-hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border-radius: 0 0 50px 50px;
}

/* Service Cards */
.service-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  background-color: #ffffff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  background-color: #e9f3ff;
  color: #0d6efd;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  transition: 0.3s;
}

.service-card:hover .icon-wrapper {
  background-color: #0d6efd;
  color: #fff;
}

.service-card .card-title {
  font-size: 1.25rem;
}

/* Service Detail Page */
.service-detail-section {
  background-color: #f8f9fa;
}

.service-detail-section img {
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.service-detail-section img:hover {
  transform: scale(1.02);
}

.service-detail-hero {
  color: #fff;
  border-radius: 0 0 50px 50px;
}

.service-detail-hero h1 {
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.list-group-item {
  background: transparent;
}

.service-detail-section img {
  transition: transform 0.4s ease;
}

.service-detail-section img:hover {
  transform: scale(1.05);
}

/* ----------------------------------------------------
   CONTACT PAGE
---------------------------------------------------- */
/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  border-radius: 0 0 50px 50px;
}


/* ----------------------------------------------------
   BLOG DETAILS
---------------------------------------------------- */
.blog-content img {
  border-radius: 1rem;
  border: 1px solid #e3e9ef;
}
.blog-content p, .blog-content li {
  font-size: 1.05rem;
  color: #444;
}

/* ----------------------------------------------------
   RESPONSIVE ADJUSTMENTS
---------------------------------------------------- */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 767px) {
  .hero-section {
    text-align: center;
  }
  .hero-section img {
    margin-top: 1.5rem;
  }
  .btn-primary, .btn-outline-primary {
    width: auto;
  }
}
