/* ==========================
   Home Page Styles
========================== */
.logo-img {
  height: 90px !important;        /* adjust this */
  width: auto;
  vertical-align: middle;
}

.navbar-brand {
  display: flex;
  align-items: center;
}
body{
    background: linear-gradient(90deg,  #f2ecec, #FFFFFF, #f2ecec);
}
/* Home background */
#home {
    background: url('path-to-image.jpg') no-repeat center center;
    background-size: cover;
}
/* ==========================
   Navbar
========================== */
.navbar {
    padding: .5rem 2rem;
background: linear-gradient(90deg, #FFFFFF, #0f53baad);
}

.navbar-brand {
    font-size: 2.5rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000 !important;
}

.navbar-nav .nav-link {
    font-size: 1.35rem;
    font-weight: 500;
    color: #000000da;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.navbar-toggler {
    border: none;
}

.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

/* ==========================
   Hero Section
========================== */
#hero {
    position: relative;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 4rem;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 5em;
    line-height: 1.2;
    color: #ffffff !important;
	position: relative;
    top: -20px;
}

#hero p.lead {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff !important;
	position: relative;
    top: -20px;
}

#hero .btn-primary {
    background-color: rgba(125, 143, 170, 0.731) !important;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#hero .btn-primary:hover {
    text-decoration: underline !important;
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.25);
    text-decoration: none;
    color: #fff;
}

/* ==========================
   Clean Professional CTA
========================== */
#cta {
               /* white background */
    color: #29395a;                    /* main text green */
    padding: 5rem 2rem;
    position: relative;
    border-radius: 12px;
    max-width: 1200px;
    margin: 3rem auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* subtle shadow for depth */
}

/* Optional decorative divider lines */
#cta hr.divider {
    border: 0;
    border-top: 2px solid #000000;
    width: 60px;
    margin: 2rem auto;
    border-radius: 2px;
}

/* Heading */
#cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Contact info */
#cta .cta-links p {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

/* Bold label inside contact info */
#cta .cta-links strong {
    font-weight: 700;
}

/* Links styling */
#cta .cta-link {
    color: #29395a;
    text-decoration: none;
    transition: color 0.3s ease;
}

#cta .cta-link:hover {
    color: #2a3751;
    text-decoration: underline;
}

/* CTA Button */
#cta .btn-cta {
    display: inline-block;
    background-color: #29395a;       
    color: #ffffff;                  /* white text */
    font-size: 1.5rem !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;             /* pill shape */
    border: none;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

/* Button hover effect */
#cta .btn-cta:hover {
    background-color: #2a3751;       /* lighter green hover */
    text-decoration: underline;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    color: #ffffff;
}

/* Flex Layout */
#cta .row.align-items-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

/* Columns */
#cta .col-md-6 {
    flex: 1 1 45%;
    text-align: left;
}

#cta .col-md-6.text-md-end {
    text-align: right;
}

/* Responsive: mobile */
@media (max-width: 767px) {
    #cta .col-md-6 {
        flex: 1 1 100%;
        text-align: center !important;
        margin-bottom: 1.5rem;
    }

    #cta .btn-cta {
        font-size: 1.25rem !important;
        padding: 0.75rem 1.5rem;
    }
}



/* ==========================
   Checklist Section
========================== */
#checklist {
background: linear-gradient(90deg, #FFFFFF, #0f53baad);
    border-radius: 16px;
    color: #ffffff;
    margin: 1rem auto;
    max-width: 1000px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#checklist:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

#checklist h2 {
    color: #1a120a !important;
    font-weight: 700;
}

#checklist p {
    color: #1a120a;
    font-size: 1.20rem;
    margin-bottom: 0.75rem;
}

#checklist img {
    max-width: 85%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#checklist:hover img {
    transform: scale(1.05);
}

/* ==========================
   Services Section
========================== */
#services .p-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#services h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

#services .p-4 img {
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

#services .p-4 h4 {
    font-size: 2.35rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

#services .p-4 p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.75rem;
}

#services .p-4:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* ==========================
   Mission Section
========================== */
#mission {
background: linear-gradient(-140deg, #FFFFFF, #5d7598ad);
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

#mission h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
}

#mission p {
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 2rem;
}

#mission p::before,
#mission p::after {
    font-family: serif;
    font-size: 3rem;
    color: rgba(255,255,255,0.7);
    position: absolute;
}

#mission p::before { content: "“"; left:0; top:-0.5rem; }
#mission p::after { content: "”"; right:0; bottom:-0.5rem; }

/* ==========================
   About Section
========================== */
#about {
    padding: 5rem 2rem;
}

#about h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#about p:first-of-type {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1rem auto;
    position: relative;
    padding: 0.5rem 1.5rem;
}

#about p:first-of-type::before,
#about p:first-of-type::after {
    font-family: serif;
    font-size: 2.5rem;
    color: rgba(0,0,0,0.2);
    position: absolute;
}

#about p:first-of-type::before { content: "“"; left:0; top:-0.5rem; }
#about p:first-of-type::after { content: "”"; right:0; bottom:-0.5rem; }

#about p.text-muted {
    font-size: 1rem;
    margin-top: 1rem;
    color: #6c757d;
}

/* ==========================
   Floating Reviews
========================== */
.floating-reviews {
    margin-top: -80px;
    z-index: 5;
    pointer-events: none;
}

.floating-review-card {
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.reviews{
    background-color: #ffffff00;
}

/* ==========================
   Footer
========================== */
#site-footer {
background: linear-gradient(-150deg, #FFFFFF, #0f53baad);
  color: #fff;
    font-size: 0.95rem;
}

#site-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#site-footer a:hover { color: #100C08; }

#site-footer h5 { font-weight: 700; letter-spacing: 0.5px; }

#site-footer .footer-social { font-size: 1.5rem; color: #fff; transition: color 0.3s ease; }
#site-footer .footer-social:hover { color: #100C08; }

#site-footer hr { border-top: 1px solid rgba(255,255,255,0.2); }

/* ==========================
   Buttons
========================== */

/* ==========================
   HOME BLOG SECTION
========================== */

/* Make entire card clickable */
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card container */
.blog-card-link .card {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  background-color: #fff;
}

/* Card hover effect */
.blog-card-link:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Card image */
.blog-card-link .card-img-top {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.3s ease;
}

.blog-card-link:hover .card-img-top {
  transform: scale(1.05);
}

/* Card body */
.blog-card-link .card-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

/* Card title */
.blog-card-link .card-title {
  color: #100C08;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.blog-card-link:hover .card-title {
  color: #100C08;
}

/* Card text */
.blog-card-link .card-text {
  color: #100C08;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Read More Button */
.blog-card-link .btn {
  display: inline-block;
  background-color: #2a3751;
  color: #ffffff !important;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.blog-card-link:hover .btn {
  background-color: #2a3751;
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
  .blog-card-link .card-img-top {
    height: auto;
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    #blog-posts .col-md-4 {
        flex: 1 1 45%;
    }
}

@media (max-width: 767px) {
    #blog-hero h1,
    #single-post-hero h1 {
        font-size: 2rem;
    }

    #blog-hero p.lead,
    #single-post-hero p.lead {
        font-size: 1.2rem;
    }

    #blog-posts .col-md-4 {
        flex: 1 1 100%;
    }

    .sidebar {
        margin-top: 2rem;
    }
}

/* ==========================
   Media Queries
========================== */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        font-size: 1.1rem;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .navbar { padding: 1rem 1rem; }
}

@media (max-width: 767px) {
    #hero h1 { font-size: 2.25rem; }
    #hero p.lead { font-size: 1.25rem; }
    #hero .btn-primary { font-size: 1rem; padding: 0.5rem 1.5rem; }

    #cta { padding: 3rem 1.5rem; }
    #cta h2 { font-size: 2rem; }
    #cta p { font-size: 1.1rem; }
    #cta .btn-cta { font-size: 1rem; padding: 0.5rem 1.5rem; }

    .floating-reviews { margin-top: 0; }
    .floating-review-card { margin-bottom: 1rem; }

    #services h2 { font-size: 2.25rem; }
    #services .p-4 h4 { font-size: 1.75rem; }
    #services .p-4 p { font-size: 0.95rem; }

    #checklist p { font-size: 1rem; }
}
/* Responsive adjustments */
@media (max-width: 767px) {
    #cta .col-md-6 {
        flex: 1 1 100%;
        text-align: center;
    }
    #cta .btn-cta {
        width: 100%;
        margin-top: 1rem;
    }
    #cta p {
        font-size: 1.1rem;
    }
    #cta h2 {
        font-size: 2rem;
    }
}

/* ==========================
   Mobile / Tablet Adjustments
========================== */
/* ==========================
   Navbar Mobile Adjustments
========================== */
@media (max-width: 767px) {
    /* Shrink logo */
    .navbar-brand .logo-img {
        height: 60px !important; /* smaller logo for mobile */
        width: auto;
    }

    /* Shrink site title */
    .navbar-brand span {
        font-size: .85rem !important; /* smaller text */
        white-space: nowrap; /* prevent wrapping */
    }

    /* Optional: reduce navbar padding */
    .navbar {
        padding: 0.25rem .5rem;
    }

    /* Tweak nav links spacing in mobile menu */
    .navbar-collapse .nav-link {
        font-size: 1rem;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 991px) {

    /* Shrink site title */
    .navbar-brand {
        font-size: 1.5rem !important; /* smaller but readable */
    }

    /* Upsize nav links in collapsed menu */
    .navbar-collapse .nav-link {
        font-size: 1.25rem; /* bigger for touch */
        padding: 0.75rem 1rem;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    /* Optional: increase spacing between links */
    .navbar-collapse .nav-item + .nav-item {
        margin-top: 0.5rem;
    }

    /* Make hamburger icon slightly bigger */
    .navbar-toggler {
        font-size: 1.5rem;
        padding: 0.5rem 0.75rem;
    }
}
