/* Beautiful card styling for section containers */
.card, .section-card, .blog-card, .service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(16,87,73,0.13);
  border: 1.5px solid #e6e6e6;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s;
}
.card:hover, .section-card:hover, .blog-card:hover, .service-card:hover {
  box-shadow: 0 12px 32px rgba(255,102,0,0.18);
  border-color: #ff6600;
}
/* Add frames to all images and videos */
img, video {
  border: 4px solid #ff6600;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(16,87,73,0.12);
  background: #fff;
}
/* Modern override stylesheet - style-modern.css
   Clean, responsive template style inspired by mamariziki.com
   Uses the palette: green (#0c4237, #105749), orange (#ffad61), light cream (#fffef3)
*/
:root{
  --brand-dark: #0c4237;
  --brand: #105749;
  --deep-green: #105749;
  --accent: #ff6600; /* deep orange */
  --accent-2: #ffad61; /* lighter orange */
  --bg: #fff; /* pure white */
  --card: #fff;
  --muted: #105749;
  --text: #ff6600; /* deep orange for main text */
  --notice: #c7ff9b; /* light green */
}

html, body { height: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== NAVBAR ========== */
.navbar-b {
  background: var(--deep-green) !important;
  border-bottom: 0;
  color: #fff;
  box-shadow: 0 2px 8px rgba(16, 87, 73, 0.08);
}

.navbar-b .navbar-brand {
  color: #fff; /* white text for header brand */
  font-weight: 800;
  font-size: 1.3rem;
}

.navbar-b .nav-link {
  color: #fff; /* white text for nav links */
  text-transform: none;
  font-weight: 600;
  font-size: .95rem;
}

.navbar-b .nav-link:hover {
  color: var(--accent);
}

/* ========== HERO / INTRO ========== */
.intro {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.intro .intro-content .container {
  max-width: 1000px;
}

.intro .intoo {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.intro .intro-subtitle {
  font-size: 1.05rem;
  color: var(--deep-green);
  font-weight: 400;
}

.intro .intro-name {
  color: var(--accent);
}

.intro .overlay-itro {
  background: linear-gradient(180deg, rgba(12, 66, 55, 0.3), rgba(12, 66, 55, 0.5));
}

/* ========== BUTTONS ========== */
.button-a, .btn-primary, .btn {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: .65rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(255, 173, 97, 0.16);
  font-weight: 600;
}

.button-a:hover, .btn-primary:hover, .btn:hover {
  background: #ff9933;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 173, 97, 0.22);
}

.btn-brand {
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 8px;
  padding: .65rem 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(12, 66, 55, 0.12);
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(12, 66, 55, 0.18);
}

/* ========== CARDS & SERVICES ========== */
.card-blog {
  border-radius: 12px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid #e8e8e8;
  background: var(--card);
}

.card-blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 66, 55, 0.08);
}

.card-blog .card-title {
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: .5rem;
}

.card-blog .card-description, .card-blog .s-description, .card-blog p {
  color: #666;
  font-size: .95rem;
  line-height: 1.6;
}

/* ========== IMAGES & VIDEOS ========== */
.card-img img, .card-img video {
  border-radius: 8px 8px 0 0;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-fluid {
  border-radius: 8px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
  padding: 5rem 0;
}

.testimonial-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 2rem;
}

.testimonial-box .description {
  color: #333;
  font-size: .95rem;
  line-height: 1.8;
}

.testimonial-box .comit {
  background: var(--accent);
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 1.6;
}

.testimonial-box .author {
  color: var(--text);
  font-weight: 700;
}

/* ========== SECTION TITLES ========== */
.title-box {
  margin-bottom: 3rem;
}

.title-a {
  color: var(--text) !important;
  font-size: 2.5rem;
  font-weight: 800;
}

.subtitle-a {
  color: #777;
  font-size: 1.05rem;
}

.line-mf {
  background-color: var(--accent) !important;
  height: 4px;
  width: 50px;
}

.title-box-2 .title-left {
  color: var(--text);
  font-weight: 800;
}

.title-box-2 .title-left:before {
  background-color: var(--accent) !important;
}

/* ========== HEADINGS ========== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text) !important;
}

/* ========== SECTIONS ========== */
.about-mf {
  background: #fafafa;
}

.box-shadow, .box-shadow-full {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.box-shadow-full {
  background: var(--card);
}

/* ========== FOOTER ========== */
footer {
  background: var(--text);
  color: #fff;
}

/* ========== UTILITIES ========== */
.rounded-lg {
  border-radius: 12px;
}

.bg-light {
  background: #fafafa;
}

/* ========== ACCESSIBILITY ========== */
a:focus {
  outline: 3px solid rgba(255, 173, 97, 0.3);
  outline-offset: 3px;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .intro .intoo {
    font-size: 1.5rem;
  }

  .title-a {
    font-size: 1.8rem;
  }

  .navbar-b {
    padding-top: .6rem;
    padding-bottom: .6rem;
  }
}

/* End of modern overrides */
