
.hero {
    background: linear-gradient(
        rgba(10, 39, 64, 0.7),
        rgba(10, 39, 64, 0.7)
    );
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-text {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: cursive, Sans-serif;


}

.hero-subtext {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff9800;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #e68900;
}

/* About Section */

.about {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 60px 20px;

}

.about-container {
    flex: 1 1 300px;
    margin: 20px;
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.about-container h2 {
    font-size: 1.8rem;
    color: #0a2740;
    margin-bottom: 15px;
    font-family: cursive, Sans-serif ;

}

.about-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Services Section */

.services-overview {
    background-color: #0a2740;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: cursive, Sans-serif ;

}

.services-overview p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2rem;
    line-height: 1.5;
}

.service-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-icon {
    background-color: #154162;
    border-radius: 8px;
    padding: 20px;
    width: 220px;
    text-align: center;
    transition: transform 1s, background 0.3s;
}

.service-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    cursor: crosshair;
}

.service-icon h3 {
    font-size: 1.2rem;
    color: #fff;
}

.service-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: #1e598a;
}

/* Call to Action Section */

.call-to-action {
    background-color: #ff9800;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.call-to-action h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: cursive, Sans-serif;

}

.call-to-action p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

.contact{
    font-family: cursive, Sans-serif ;
    font-size: 2em;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);

}

.container1{

}


/* Blog Section */
.blog-section {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.blog-section h2 {
    font-size: 2.5rem;
    color: #0a2740;
    margin-bottom: 10px;
    font-family: cursive, Sans-serif;
}

.blog-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card h3 {
    color: #0a2740;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.read-more {
    font-weight: bold;
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e68900;
}


.faith {
  background-color: #ffffff;
  padding: 10vh 8vw;
}

.faith-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #f4f4f8;
  border-left: 6px solid #0a2740;
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faith h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #0a2740;
  font-family: cursive, Sans-serif;
}

.faith p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
  font-size: 1rem;
}

.faith-note {
  font-size: 0.95rem;
  color: #555;
  margin-top: 4px;
}

.faith-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 28px;
  background-color: #ff9800;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.08s ease;
}

.faith-btn:hover {
  background-color: #e68900;
}

.faith-btn:active {
  transform: translateY(1px);
}


